@charset "UTF-8";
/*
 * Copyright (c) Since 2024 InnoShop - All Rights Reserved
 *
 * @link       https://www.innoshop.com
 * @license    https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
 *
 * Front SCSS entry (default theme).
 * Structure: base/ (variables, global, font) -> layout/ -> components/ -> modules/ -> pages/
 *
 * Theme reuse (themes/<theme>/css/app.scss):
 *   @import './_variables';          // optional (define $primary/$price/$default)
 *   @import '@front/css/app';        // reuse this entry
 *   @import '@front/css/<group>/<file>'; // optional: import extra styles not included by default entry
 *   @import './...';                 // theme overrides
 */
:root {
  --primary: #4BC6CA;
  --primary-dark: #0F8A8E;
  --primary-50: #E6F7F8;
  --primary-100: #C4EBED;
  --ink: #0F1F2A;
  --ink-soft: #5A6B7A;
  --ink-muted: #8C9AA8;
  --warm-cta: #D97757;
  --bg-soft: #FAFBFC;
  --divider: #E5E9EC;
  --hairline: #F1F4F6;
  --radius-card: 16px;
  --radius-button: 8px;
}

.min-h1 {
  min-height: 100px;
}

.min-h2 {
  min-height: 200px;
}

.min-h3 {
  min-height: 300px;
}

.min-h4 {
  min-height: 400px;
}

.min-h5 {
  min-height: 500px;
}

.min-h6 {
  min-height: 600px;
}

.wp-100 {
  width: 100px;
  flex: 0 0 100px;
}

.wp-200 {
  width: 200px;
  flex: 0 0 200px;
}

.wp-300 {
  width: 300px;
  flex: 0 0 300px;
}

.wp-400 {
  width: 400px;
  flex: 0 0 400px;
}

.wp-500 {
  width: 500px;
  flex: 0 0 500px;
}

.wp-600 {
  width: 600px;
  flex: 0 0 600px;
}

.wp-700 {
  width: 700px;
  flex: 0 0 700px;
}

.wp-800 {
  width: 800px;
  flex: 0 0 800px;
}

.wp-900 {
  width: 900px;
  flex: 0 0 900px;
}

.wp-1000 {
  width: 1000px;
  flex: 0 0 1000px;
}

.wp-100- {
  width: calc(100% - 100px);
  flex: 0 0 calc(100% - 100px);
}

.wp-200- {
  width: calc(100% - 200px);
  flex: 0 0 calc(100% - 200px);
}

.wp-300- {
  width: calc(100% - 300px);
  flex: 0 0 calc(100% - 300px);
}

.wp-400- {
  width: calc(100% - 400px);
  flex: 0 0 calc(100% - 400px);
}

.wp-500- {
  width: calc(100% - 500px);
  flex: 0 0 calc(100% - 500px);
}

.wp-600- {
  width: calc(100% - 600px);
  flex: 0 0 calc(100% - 600px);
}

.wp-700- {
  width: calc(100% - 700px);
  flex: 0 0 calc(100% - 700px);
}

.wp-800- {
  width: calc(100% - 800px);
  flex: 0 0 calc(100% - 800px);
}

.wp-900- {
  width: calc(100% - 900px);
  flex: 0 0 calc(100% - 900px);
}

.wp-1000- {
  width: calc(100% - 1000px);
  flex: 0 0 calc(100% - 1000px);
}

.h-min-100 {
  min-height: 100px;
}

.h-min-200 {
  min-height: 200px;
}

.h-min-300 {
  min-height: 300px;
}

.h-min-400 {
  min-height: 400px;
}

.h-min-500 {
  min-height: 500px;
}

.h-min-600 {
  min-height: 600px;
}

.h-min-700 {
  min-height: 700px;
}

.h-min-800 {
  min-height: 800px;
}

.h-min-900 {
  min-height: 900px;
}

.h-min-1000 {
  min-height: 1000px;
}

.w-min-100 {
  min-width: 100px;
}

.w-min-200 {
  min-width: 200px;
}

.w-min-300 {
  min-width: 300px;
}

.w-min-400 {
  min-width: 400px;
}

.w-min-500 {
  min-width: 500px;
}

.w-min-600 {
  min-width: 600px;
}

.w-min-700 {
  min-width: 700px;
}

.w-min-800 {
  min-width: 800px;
}

.w-min-900 {
  min-width: 900px;
}

.w-min-1000 {
  min-width: 1000px;
}

.w-max-100 {
  max-width: 100px;
}

.w-max-200 {
  max-width: 200px;
}

.w-max-300 {
  max-width: 300px;
}

.w-max-400 {
  max-width: 400px;
}

.w-max-500 {
  max-width: 500px;
}

.w-max-600 {
  max-width: 600px;
}

.w-max-700 {
  max-width: 700px;
}

.w-max-800 {
  max-width: 800px;
}

.w-max-900 {
  max-width: 900px;
}

.w-max-1000 {
  max-width: 1000px;
}

.hp-100 {
  height: 100px;
}

.hp-200 {
  height: 200px;
}

.hp-300 {
  height: 300px;
}

.hp-400 {
  height: 400px;
}

.hp-500 {
  height: 500px;
}

.hp-600 {
  height: 600px;
}

.hp-700 {
  height: 700px;
}

.hp-800 {
  height: 800px;
}

.hp-900 {
  height: 900px;
}

.hp-1000 {
  height: 1000px;
}

.wh-10 {
  height: 10px;
  width: 10px;
  flex: 0 0 10px;
}

.wh-20 {
  height: 20px;
  width: 20px;
  flex: 0 0 20px;
}

.wh-30 {
  height: 30px;
  width: 30px;
  flex: 0 0 30px;
}

.wh-40 {
  height: 40px;
  width: 40px;
  flex: 0 0 40px;
}

.wh-50 {
  height: 50px;
  width: 50px;
  flex: 0 0 50px;
}

.wh-60 {
  height: 60px;
  width: 60px;
  flex: 0 0 60px;
}

.wh-70 {
  height: 70px;
  width: 70px;
  flex: 0 0 70px;
}

.wh-80 {
  height: 80px;
  width: 80px;
  flex: 0 0 80px;
}

.wh-90 {
  height: 90px;
  width: 90px;
  flex: 0 0 90px;
}

.wh-100 {
  height: 100px;
  width: 100px;
  flex: 0 0 100px;
}

a {
  text-decoration: none;
}

.cursor-pointer {
  cursor: pointer;
}

.btn-primary {
  color: #fff !important;
}

[v-cloak] {
  display: none;
}

.container-fluid {
  max-width: 1400px;
  margin: 0 auto;
}

.table-response thead {
  display: none;
}
@media (min-width: 768px) {
  .table-response thead {
    display: table-header-group;
  }
}
.table-response:not(.table-response.table-bordered) tr td:first-child, .table-response:not(.table-response.table-bordered) tr th:first-child {
  padding-left: 0;
}
.table-response:not(.table-response.table-bordered) tr td:last-child, .table-response:not(.table-response.table-bordered) tr th:last-child {
  padding-right: 0;
}
.table-response td {
  display: block;
  text-align: right;
  clear: both;
}
.table-response td::before {
  content: attr(data-title) ": ";
  float: left;
}
@media (min-width: 768px) {
  .table-response td::before {
    display: none;
  }
}
@media (min-width: 768px) {
  .table-response td {
    display: table-cell;
    text-align: left;
  }
}
@media (max-width: 768px) {
  .table-response td {
    border-bottom: none;
  }
  .table-response td:last-child {
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 24px;
    margin-bottom: 14px;
  }
}

.quantity-wrap {
  border: 1px solid #e6e6e6;
  display: flex;
  align-items: center;
  width: 140px;
  height: inherit;
  overflow: hidden;
  position: relative;
}
.quantity-wrap.disabled::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 1;
}
.quantity-wrap input {
  border: none;
  text-align: center;
  padding: 0;
  font-size: 18px;
  height: inherit;
  box-shadow: none !important;
}
.quantity-wrap input::-webkit-inner-spin-button, .quantity-wrap input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity-wrap div {
  font-size: 18px;
  height: inherit;
  width: 38px;
  flex: 0 0 38px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #666;
}
.quantity-wrap div:hover {
  color: #4BC6CA;
}

.tabs-plus {
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 24px;
  padding-bottom: 6px;
}
.tabs-plus .nav-item {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .tabs-plus .nav-item {
    margin-right: 40px;
  }
}
.tabs-plus .nav-link {
  padding-left: 2px;
  padding-right: 2px;
  border: none !important;
  color: #888;
  font-size: 14px;
  position: relative;
  cursor: pointer;
}
@media (min-width: 768px) {
  .tabs-plus .nav-link {
    font-size: 18px;
  }
}
.tabs-plus .nav-link::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #222;
  bottom: -6px;
  left: 0;
  transform: scaleX(0);
  transition: transform 0.3s;
  display: none;
}
.tabs-plus .nav-link.active {
  color: #222;
  font-weight: bold;
}
.tabs-plus .nav-link.active::after {
  transform: scaleX(1);
  display: block;
}

.is-up-file .img-upload-item {
  border-style: dashed !important;
}
.is-up-file .img-upload-item:hover {
  background-color: #f4f4f4 !important;
  border-color: #4BC6CA !important;
}
.is-up-file .img-upload-item:active {
  background-color: #e4e4e4 !important;
}
.is-up-file .img-upload-item .tool-wrap > div:first-of-type {
  border-right: 1px solid #fff;
}
.is-up-file .img-upload-item .tool-wrap > div:hover {
  background-color: #1d4ff3;
}

.swiper .swiper-pagination-bullet-active {
  background-color: #4BC6CA;
}

.page-head {
  padding: 40px 0;
  background: #EFF1FE;
  text-align: center;
}
@media (max-width: 768px) {
  .page-head {
    padding: 20px 0;
  }
}
.page-head .page-title {
  font-size: 30px;
  color: #333;
  margin-bottom: 14px;
}
.page-head .breadcrumb {
  margin-bottom: 0;
  font-size: 15px;
}
.page-head .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "\f285";
  font-size: 12px;
  margin-top: 3px;
  font-family: "bootstrap-icons";
}
.page-head .breadcrumb a {
  text-decoration: none;
}

.page-product-content {
  margin-top: 3rem;
}
@media (max-width: 992px) {
  .page-product-content {
    margin-top: 1.5rem;
  }
}
.page-product-content .title-box {
  text-align: center;
  margin-bottom: 40px;
}
.page-product-content .title-box .title {
  font-size: 26px;
  color: #333;
  margin-bottom: 10px;
}
.page-product-content .title-box .sub-title {
  font-size: 16px;
  color: #666;
}
.page-product-content .product-item {
  margin-bottom: 30px;
  background-color: #fff;
  box-shadow: 0 10px 30px 0 rgba(194, 49, 244, 0.1);
}
.page-product-content .product-item .top {
  background-color: #F3F7FF;
  height: 70px;
  display: flex;
  align-items: center;
}
.page-product-content .product-item .top .left {
  width: 70px;
  height: 70px;
  background-color: #4BC6CA;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-product-content .product-item .top .left i {
  color: #fff;
  font-size: 20px;
}
.page-product-content .product-item .top .name {
  font-size: 18px;
  padding: 0 10px 0 20px;
}
.page-product-content .product-item .content {
  padding: 20px;
  line-height: 2;
  font-size: 15px;
  color: #555;
}
@media (min-width: 992px) {
  .page-product-content .product-item .content {
    height: 220px;
  }
}

.page-service-content {
  margin-top: 3rem;
  color: #606B86;
}
.page-service-content .title-box {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .page-service-content .title-box {
    margin-bottom: 30px;
  }
}
.page-service-content .title-box .title {
  font-size: 26px;
  color: #333;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .page-service-content .title-box .title {
    font-size: 22px;
    text-align: center;
  }
}
.page-service-content .title-box .sub-title {
  font-size: 16px;
  max-width: 550px;
}
@media (max-width: 992px) {
  .page-service-content .title-box .sub-title {
    font-size: 12px;
    text-align: center;
  }
}
@media (min-width: 992px) {
  .page-service-content .title-box .sub-title {
    line-height: 1.8;
  }
}
@media (min-width: 992px) {
  .page-service-content .service-row-2 {
    padding-left: 64px;
  }
}
.page-service-content .service-icon {
  max-width: 500px;
}
@media (max-width: 992px) {
  .page-service-content .service-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
  }
  .page-service-content .service-icon img {
    max-width: 80%;
  }
}
.page-service-content .service-item {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .page-service-content .service-item {
    margin-bottom: 20px;
  }
}
.page-service-content .service-item .icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FCF3F4;
  margin-bottom: 20px;
}
.page-service-content .service-item .icon i {
  font-size: 18px;
  color: #FA4949;
}
.page-service-content .service-item .title {
  margin-bottom: 10px;
  color: #222;
  font-size: 18px;
}
.page-service-content .service-item .sub-title {
  color: #606B86;
  font-size: 14px;
  line-height: 1.8;
}

.page-about-content {
  margin-top: 3rem;
}
.page-about-content .about-text .main-title {
  font-size: 26px;
  color: #333;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .page-about-content .about-text .main-title {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
.page-about-content .about-text .about-text-item {
  display: flex;
  margin-bottom: 40px;
}
.page-about-content .about-text .about-text-item:last-child {
  margin-bottom: 0;
}
.page-about-content .about-text .about-text-item .left {
  width: 40px;
  flex: 0 0 40px;
}
.page-about-content .about-text .about-text-item .left i {
  font-size: 24px;
  color: #4BC6CA;
}
.page-about-content .about-text .about-text-item .right .title {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}
.page-about-content .about-text .about-text-item .right .sub-title {
  font-size: 14px;
  color: #606B86;
  line-height: 2;
  max-width: 460px;
}
.page-about-content .home-contact {
  background-color: #F9F9FC;
  background: linear-gradient(180deg, #F9F9FC 0%, #fff 100%);
  padding: 60px 0;
}

.layui-layer-btn .layui-layer-btn0 {
  background-color: #4BC6CA;
  border-color: #4BC6CA;
}

input[type=password] {
  font-family: "Arial";
}

@font-face {
  font-family: "Jost";
  src: url("/vendor/font/jost/Jost-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("/vendor/font/jost/Jost-Medium.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
  font-weight: 700;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 1px 0 #E5E9EC;
}

header .dropdown {
  cursor: pointer;
}
header .dropdown:hover .dropdown-menu {
  display: block;
}
header .header-top {
  background-color: #0F1F2A;
  color: rgba(255, 255, 255, 0.7);
  height: 40px;
  display: flex;
  align-items: center;
  font-size: 12px;
}
header .header-top .header-hotline {
  color: rgba(255, 255, 255, 0.9);
}
header .header-top .header-hotline i {
  color: #4BC6CA;
  margin-right: 4px;
}
header .header-top .header-hotline:hover {
  color: #C4EBED;
}
header .header-top .top-info a {
  color: inherit;
  margin-right: 10px;
}
header .header-top .top-info a:hover > a {
  color: #4BC6CA;
}
header .header-top .language-switch .dropdown {
  cursor: pointer;
}
header .header-top .language-switch .dropdown:hover > a {
  color: #4BC6CA;
}
header .header-top .language-switch .dropdown > a {
  color: inherit;
  border-radius: 0;
  border: none;
  padding: 0;
  height: 40px;
  line-height: 40px;
}
header .header-top .language-switch .dropdown > a img {
  width: 20px;
}
header .search-group {
  background-color: #FAFBFC;
  position: relative;
  border: 1px solid #E5E9EC;
  border-radius: 999px;
  transition: border-color 200ms, background 200ms, box-shadow 200ms;
}
header .search-group:focus-within {
  border-color: #4BC6CA;
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(75, 198, 202, 0.1);
}
header .search-group input {
  background-color: transparent;
  padding: 0 44px 0 18px;
  border-radius: 999px;
  border: none;
  width: 210px;
  font-size: 14px;
  height: 44px;
  box-shadow: none;
}
header .search-group input:focus {
  background-color: transparent;
  box-shadow: none;
}
header .search-group .btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: #8C9AA8;
}
header .search-group .btn i {
  font-size: 18px;
}
header .search-group .btn:hover {
  color: #4BC6CA;
}
header .header-desktop {
  padding: 18px 0;
}
@media (max-width: 992px) {
  header .header-desktop {
    display: none;
  }
}
header .header-desktop .left {
  display: flex;
  align-items: center;
}
header .header-desktop .left .logo {
  margin-bottom: 0;
}
header .header-desktop .left .logo a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
header .header-desktop .left .logo img {
  max-width: 160px;
  max-height: 48px;
}
header .header-desktop .left .logo .logo-sub {
  font-size: 13px;
  font-weight: 500;
  color: #5A6B7A;
  white-space: nowrap;
}
@media (max-width: 1100px) {
  header .header-desktop .left .logo .logo-sub {
    display: none;
  }
}
header .header-desktop .left .menu {
  margin-left: 40px;
}
header .header-desktop .left .menu .navbar {
  padding: 0;
}
header .header-desktop .left .menu .navbar-nav > .nav-item > .dropdown {
  position: relative;
}
header .header-desktop .left .menu .navbar-nav > .nav-item:not(.hf-header-menu-item) > .dropdown > .dropdown-menu:not(.w-100) {
  left: 0;
  right: auto;
  transform: none;
}
header .header-desktop .left .menu .navbar-nav > .nav-item > .dropdown > .nav-link, header .header-desktop .left .menu .navbar-nav > .nav-item > .nav-link {
  font-weight: 500;
  color: #5A6B7A;
  font-size: 15px;
  padding-left: 6px;
  padding-right: 6px;
  margin: 0 14px;
  position: relative;
  transition: color 200ms;
}
header .header-desktop .left .menu .navbar-nav > .nav-item > .dropdown > .nav-link.active, header .header-desktop .left .menu .navbar-nav > .nav-item > .nav-link.active {
  color: #0F8A8E;
  font-weight: 600;
}
header .header-desktop .left .menu .navbar-nav > .nav-item > .dropdown > .nav-link::after, header .header-desktop .left .menu .navbar-nav > .nav-item > .nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  border-bottom: 2px solid #4BC6CA;
  transition: width 0.3s;
}
header .header-desktop .left .menu .navbar-nav > .nav-item:hover > .dropdown > .nav-link, header .header-desktop .left .menu .navbar-nav > .nav-item:hover > .nav-link {
  color: #0F8A8E;
}
header .header-desktop .left .menu .navbar-nav > .nav-item:hover > .dropdown > .nav-link::after, header .header-desktop .left .menu .navbar-nav > .nav-item:hover > .nav-link::after {
  width: 100%;
  left: 0;
}
header .header-desktop .left .menu .navbar-nav > .nav-item:hover .dropdown-menu {
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: none;
  display: block;
}
header .header-desktop .right {
  display: flex;
  align-items: center;
}
header .header-desktop .right .dropdown .dropdown-toggle::after {
  display: none;
}
header .header-desktop .right .icons {
  display: flex;
  align-items: center;
}
header .header-desktop .right .icons .account-icon .dropdown-menu {
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: none;
  text-align: center;
}
header .header-desktop .right .icons .account-icon .dropdown-menu a {
  padding: 10px 0;
}
header .header-desktop .right .icons .item {
  margin-left: 26px;
  position: relative;
}
header .header-desktop .right .icons .item .icon-quantity {
  position: absolute;
  top: -5px;
  right: -10px;
  background-color: #D97757;
  color: #fff;
  font-size: 9px;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header-mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}
@media (min-width: 992px) {
  header .header-mobile {
    display: none;
  }
}
header .header-mobile .logo {
  max-width: 160px;
  max-height: 50px;
  margin-bottom: 0;
}
header .header-mobile .mb-icon i {
  font-size: 30px;
  line-height: 1;
}
header .header-mobile .header-cart-icon {
  position: relative;
}
header .header-mobile .header-cart-icon .icon-quantity {
  position: absolute;
  top: -5px;
  right: -10px;
  background-color: #D97757;
  color: #fff;
  font-size: 9px;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header-mobile #mobile-menu-offcanvas {
  width: 76%;
}
header .header-mobile #mobile-menu-offcanvas .offcanvas-header {
  border-bottom: 1px solid #f1f1f1;
  display: flex;
  justify-content: space-between;
}
header .header-mobile #mobile-menu-offcanvas .offcanvas-header .search-group {
  margin-right: 10px;
}
header .header-mobile #mobile-menu-offcanvas .offcanvas-header .search-group input {
  height: 38px;
}
header .header-mobile #mobile-menu-offcanvas .offcanvas-header .search-group .btn i {
  font-size: 18px;
}
header .header-mobile #mobile-menu-offcanvas .offcanvas-header .account-icon img {
  width: 24px;
}
header .header-mobile #mobile-menu-offcanvas .close-offcanvas {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -26px;
  width: 26px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  background-color: #fff;
  border-radius: 0 5px 5px 0;
}
header .header-mobile #mobile-menu-offcanvas .close-offcanvas:active {
  background-color: #f1f1f1;
}
header .header-mobile #mobile-menu-offcanvas .mobile-menu-wrap {
  padding: 0;
}
header .header-mobile #mobile-menu-offcanvas .mobile-menu-wrap #menu-accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
}
header .header-mobile #mobile-menu-offcanvas .mobile-menu-wrap #menu-accordion .accordion-item .nav-item-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .header-mobile #mobile-menu-offcanvas .mobile-menu-wrap #menu-accordion .accordion-item .nav-item-text > a {
  flex: 1;
  height: 44px;
  padding: 0 14px;
  display: flex;
  align-items: center;
}
header .header-mobile #mobile-menu-offcanvas .mobile-menu-wrap #menu-accordion .accordion-item .nav-item-text > a:active {
  background-color: #eee;
}
header .header-mobile #mobile-menu-offcanvas .mobile-menu-wrap #menu-accordion .accordion-item .nav-item-text > a .badge {
  position: relative;
  margin-left: 13px;
  font-weight: 400;
}
header .header-mobile #mobile-menu-offcanvas .mobile-menu-wrap #menu-accordion .accordion-item .nav-item-text > a .badge::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translate(0, -50%);
  border: 4px solid;
  border-right-width: 7px;
  border: 5px solid rgba(0, 0, 0, 0);
  border-right-color: inherit;
}
header .header-mobile #mobile-menu-offcanvas .mobile-menu-wrap #menu-accordion .accordion-item .nav-item-text > span {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header-mobile #mobile-menu-offcanvas .mobile-menu-wrap #menu-accordion .accordion-item .nav-item-text > span:active {
  background-color: #eee;
}
header .header-mobile #mobile-menu-offcanvas .mobile-menu-wrap #menu-accordion .accordion-item .nav-item-text > span[aria-expanded=true] i {
  transform: rotate(180deg);
}
header .header-mobile #mobile-menu-offcanvas .mobile-menu-wrap #menu-accordion .accordion-item > .accordion-collapse {
  border-top: 1px solid #e5e5e5;
}
header .header-mobile #mobile-menu-offcanvas .mobile-menu-wrap #menu-accordion .accordion-item > .accordion-collapse .children-group {
  padding: 5px 0;
}
header .header-mobile #mobile-menu-offcanvas .mobile-menu-wrap #menu-accordion .accordion-item > .accordion-collapse .children-group .children-title {
  height: 44px;
}
header .header-mobile #mobile-menu-offcanvas .mobile-menu-wrap #menu-accordion .accordion-item > .accordion-collapse .children-group .children-title span {
  margin-right: -10px;
  width: 44px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header-mobile #mobile-menu-offcanvas .mobile-menu-wrap #menu-accordion .accordion-item > .accordion-collapse .children-group .children-title span:active {
  background-color: #eee;
}
header .header-mobile #mobile-menu-offcanvas .mobile-menu-wrap #menu-accordion .accordion-item > .accordion-collapse .children-group .children-title span[aria-expanded=true] i::before {
  content: "\f63b";
}
header .header-mobile #mobile-menu-offcanvas .mobile-menu-wrap #menu-accordion .accordion-item > .accordion-collapse .children-group .nav a {
  color: #333;
}

.footer-newsletter {
  background: linear-gradient(135deg, #4BC6CA 0%, #0F8A8E 100%);
  color: #fff;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.footer-newsletter::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 10% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 90% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}
.footer-newsletter .container {
  position: relative;
  z-index: 1;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}

.newsletter-left {
  flex: 1;
}
.newsletter-left h3 {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}
.newsletter-left p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.newsletter-right {
  flex: 1;
}

.newsletter-form {
  display: flex;
  gap: 12px;
}
.newsletter-form .form-control,
.newsletter-form input[type=email] {
  flex: 1;
  height: 48px;
  padding: 0 20px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  box-shadow: none;
}
.newsletter-form .form-control::-moz-placeholder, .newsletter-form input[type=email]::-moz-placeholder {
  color: #8C9AA8;
}
.newsletter-form .form-control::placeholder,
.newsletter-form input[type=email]::placeholder {
  color: #8C9AA8;
}

@media (max-width: 992px) {
  .newsletter-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .newsletter-form {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form .btn {
    width: 100%;
  }
}
.site-cta-band {
  background: var(--primary-dark);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.site-cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}
.site-cta-band .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
}
.site-cta-band .site-cta-top-text {
  text-align: center;
  margin-bottom: 48px;
}
.site-cta-band .site-cta-top-text h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 16px;
}
.site-cta-band .site-cta-top-text .sub {
  color: var(--primary-100);
  font-size: 16px;
  margin: 0;
}

.site-cta-card {
  background: #fff;
  border-radius: 24px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  color: var(--ink);
}
.site-cta-card .left h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}
.site-cta-card .left p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 24px;
}
.site-cta-card .right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.site-cta-contact {
  display: flex;
  align-items: center;
  gap: 16px;
}
.site-cta-contact .icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.site-cta-contact .icon-wrap svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}
.site-cta-contact .label {
  font-size: 13px;
  color: var(--ink-muted);
}
.site-cta-contact .value {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}

@media (max-width: 992px) {
  .site-cta-card {
    grid-template-columns: 1fr;
    padding: 40px;
    gap: 32px;
  }
}
@media (max-width: 576px) {
  .site-cta-band {
    padding: 56px 0;
  }
  .site-cta-band .site-cta-top-text h2 {
    font-size: 24px;
  }
  .site-cta-card {
    padding: 28px;
  }
}
.site-footer {
  background: #0F1F2A;
  color: rgba(255, 255, 255, 0.7);
}

.footer-main {
  padding: 80px 0 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-col h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 2px;
  background: #4BC6CA;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col li {
  margin-bottom: 10px;
  font-size: 14px;
}
.footer-col li a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 200ms;
}
.footer-col li a:hover {
  color: #4BC6CA;
}
.footer-col .more-link {
  color: #4BC6CA;
}

.footer-col-brand .footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  text-decoration: none;
}
.footer-col-brand .footer-logo img {
  max-height: 40px;
  width: auto;
}
.footer-col-brand .logo-text {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}
.footer-col-brand .logo-sub {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}
.footer-col-brand .footer-about-text {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
  max-width: 320px;
}
@media (max-width: 992px) {
  .footer-col-brand .footer-about-text {
    max-width: 100%;
  }
}

.footer-social {
  display: flex;
  gap: 8px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  transition: all 200ms;
}
.footer-social a:hover {
  background: #4BC6CA;
  color: #fff;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}
.footer-contact li svg {
  color: #4BC6CA;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  background: rgba(0, 0, 0, 0.2);
}
.footer-bottom .footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom .copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom .copyright a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 200ms;
}
.footer-bottom .copyright a:hover {
  color: #4BC6CA;
}
.footer-bottom .copyright .dot {
  margin: 0 6px;
  color: rgba(255, 255, 255, 0.3);
}

.payment-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pay-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-right: 4px;
}

.pay-chip {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 500;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .footer-col-brand {
    grid-column: span 2;
  }
  .footer-bottom .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .footer-col-brand {
    grid-column: span 2;
  }
  .footer-grid > .footer-col:last-child {
    grid-column: span 2;
  }
}
.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #4BC6CA 0%, #0F8A8E 100%);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(75, 198, 202, 0.25);
  flex-shrink: 0;
}

[dir=rtl] .footer-col h4::after {
  left: auto;
  right: 0;
}

.breadcrumb-wrap {
  background-image: url("/images/icons/breadcrumb-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 14px;
}
@media (min-width: 768px) {
  .breadcrumb-wrap {
    padding: 20px 0;
    margin-bottom: 30px;
  }
}
.breadcrumb-wrap .breadcrumb {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
}
.breadcrumb-wrap .breadcrumb li {
  font-size: 14px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  line-height: 1;
}
.breadcrumb-wrap .breadcrumb li a {
  text-decoration: none;
  color: #333;
}
.breadcrumb-wrap .breadcrumb li .home-icon {
  margin-right: 4px;
}
.breadcrumb-wrap .breadcrumb li:not(:last-child) {
  margin-right: 10px;
}
.breadcrumb-wrap .breadcrumb li:not(:last-child)::after {
  content: ">";
  margin: 0 10px;
}

/*
 * PageHead — 可复用页面顶部头部组件
 * 用于 about / news / hospitals / doctors / departments / service 等页面
 *
 * 提取自 docs/design-preview 各页面的 page-head 段（统一渐变 + 装饰圆 + 面包屑 + h1 + subtitle）
 * 调用方通过 <x-front-page-head> 传入 title / titleAccent / subtitle / eyebrow / breadcrumbs
 */
.page-head {
  padding: 80px 0 64px;
  background: linear-gradient(180deg, #fff 0%, var(--primary-50) 100%);
  text-align: left;
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-100) 0%, transparent 70%);
  opacity: 0.5;
}
.page-head .container {
  position: relative;
  z-index: 1;
}
.page-head .page-head-breadcrumb {
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 16px;
}
.page-head .page-head-breadcrumb a {
  color: var(--ink-muted);
}
.page-head .page-head-breadcrumb a:hover {
  color: var(--primary);
}
.page-head .page-head-breadcrumb span[aria-current=page] {
  color: var(--ink-soft);
}
.page-head .page-head-breadcrumb .sep {
  margin: 0 8px;
  opacity: 0.5;
}
.page-head .eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.page-head h1 {
  font-size: 44px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 16px;
}
.page-head h1 .accent {
  color: var(--primary-dark);
}
.page-head .subtitle {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 720px;
  margin: 0;
}

[dir=rtl] .page-head .page-head-breadcrumb .sep {
  margin: 0 8px;
}

@media (max-width: 992px) {
  .page-head h1 {
    font-size: 36px;
  }
}
@media (max-width: 576px) {
  .page-head {
    padding: 56px 0 40px;
  }
  .page-head h1 {
    font-size: 28px;
  }
}
/**
 * 面包屑内筛选按钮样式
 * 统一产品、分类、品牌页面的手机版筛选按钮样式
 */
.breadcrumb-filter-btn .btn {
  padding: 0.375rem 0.75rem;
  border: 1px solid #007bff;
  font-size: 0.875rem;
  font-weight: 500;
  color: #007bff;
  background-color: transparent;
  border-radius: 0.375rem;
  transition: all 0.15s ease-in-out;
  white-space: nowrap;
}
.breadcrumb-filter-btn .btn:hover, .breadcrumb-filter-btn .btn:focus {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.breadcrumb-filter-btn .btn:active {
  color: #fff;
  background-color: #0056b3;
  border-color: #004085;
}
.breadcrumb-filter-btn .btn i {
  font-size: 0.875rem;
}
.breadcrumb-filter-btn .btn .filter-text {
  font-size: 0.875rem;
}
@media (max-width: 575.98px) {
  .breadcrumb-filter-btn .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.8125rem;
  }
  .breadcrumb-filter-btn .btn i {
    font-size: 0.8125rem;
  }
  .breadcrumb-filter-btn .btn .filter-text {
    font-size: 0.8125rem;
  }
}

.breadcrumb-wrap .container {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.breadcrumb-wrap .container.d-flex {
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
@media (max-width: 767.98px) {
  .breadcrumb-wrap .container.d-flex {
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.breadcrumb-wrap .container .breadcrumb {
  flex-wrap: wrap;
  margin-bottom: 0;
  flex: 1;
}
@media (max-width: 767.98px) {
  .breadcrumb-wrap .container .breadcrumb {
    margin-right: 0;
    flex: 1;
    min-width: 0;
  }
}
.breadcrumb-wrap .container .breadcrumb li a, .breadcrumb-wrap .container .breadcrumb li span {
  word-break: break-word;
  hyphens: auto;
}
@media (max-width: 575.98px) {
  .breadcrumb-wrap .container .breadcrumb li:not(:last-child)::after {
    margin: 0 5px;
  }
}

/* 筛选侧边栏样式 */
.filter-sidebar {
  /* Room below the last control so “clear filters” never sits flush with the page column or drawer edge */
  padding-bottom: 1.75rem;
}
.filter-sidebar .filter-sidebar-clear-wrap {
  /* Ensure visual gap before next section/footer in flow layout */
  margin-bottom: 1.25rem;
}
.filter-sidebar {
  /* 分类菜单优化样式 */
}
.filter-sidebar .category-item {
  transition: background-color 0.2s ease;
  border-bottom: 1px solid #f8f9fa;
}
.filter-sidebar .category-item:hover {
  background-color: #f8f9fa;
}
.filter-sidebar .category-link {
  font-size: 14px;
  transition: color 0.2s ease;
}
.filter-sidebar .category-link:hover {
  color: #4BC6CA !important;
}
.filter-sidebar .category-link.active {
  color: #4BC6CA !important;
  font-weight: 600;
  border-radius: 4px;
}
.filter-sidebar .category-link i {
  font-size: 12px;
}
.filter-sidebar .category-toggle {
  border: none;
  background: none;
  color: #6c757d;
  padding: 4px 8px;
  transition: all 0.2s ease;
}
.filter-sidebar .category-toggle:hover {
  background-color: #e9ecef;
  color: #4BC6CA;
}
.filter-sidebar .category-toggle i {
  font-size: 12px;
  transition: transform 0.2s ease;
}
.filter-sidebar .category-toggle:not(.collapsed) i {
  transform: rotate(180deg);
}
.filter-sidebar .subcategory-item {
  transition: background-color 0.2s ease;
  border-bottom: 1px solid #f8f9fa;
}
.filter-sidebar .subcategory-item:hover {
  background-color: #f8f9fa;
}
.filter-sidebar .subcategory-link {
  font-size: 13px;
  transition: color 0.2s ease;
}
.filter-sidebar .subcategory-link:hover {
  color: #4BC6CA !important;
}
.filter-sidebar .subcategory-link.active {
  color: #4BC6CA !important;
  font-weight: 600;
  border-radius: 4px;
}
.filter-sidebar .subcategory-link i {
  font-size: 10px;
}
.filter-sidebar .subcategory-toggle {
  border: none;
  background: none;
  color: #6c757d;
  padding: 2px 6px;
  transition: all 0.2s ease;
}
.filter-sidebar .subcategory-toggle:hover {
  background-color: #e9ecef;
  color: #4BC6CA;
}
.filter-sidebar .subcategory-toggle i {
  font-size: 10px;
  transition: transform 0.2s ease;
}
.filter-sidebar .subcategory-toggle:not(.collapsed) i {
  transform: rotate(180deg);
}
.filter-sidebar .subsubcategory-item {
  transition: background-color 0.2s ease;
}
.filter-sidebar .subsubcategory-item:hover {
  background-color: #f8f9fa;
}
.filter-sidebar .subsubcategory-link {
  font-size: 12px;
  transition: color 0.2s ease;
}
.filter-sidebar .subsubcategory-link:hover {
  color: #4BC6CA !important;
}
.filter-sidebar .subsubcategory-link.active {
  color: #4BC6CA !important;
  font-weight: 600;
  background-color: rgba(75, 198, 202, 0.1);
  border-radius: 4px;
}
.filter-sidebar .subsubcategory-link i {
  font-size: 8px;
}
.filter-sidebar {
  /* 手风琴项目边框移除 */
}
.filter-sidebar .accordion-item {
  border: none !important;
}
.filter-sidebar .accordion-item:last-child {
  border-bottom: none !important;
}
.filter-sidebar {
  /* 双滑块价格区间样式 */
}
.filter-sidebar .dual-range-slider {
  position: relative;
  height: 40px;
  margin: 20px 0;
}
.filter-sidebar .dual-range-slider .slider-track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 6px;
  background: #e9ecef;
  border-radius: 3px;
  transform: translateY(-50%);
}
.filter-sidebar .dual-range-slider .slider-range {
  position: absolute;
  top: 50%;
  height: 6px;
  background: #4BC6CA;
  border-radius: 3px;
  transform: translateY(-50%);
  left: 0%;
  right: 0%;
}
.filter-sidebar .dual-range-slider .slider-thumb {
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  background: #4BC6CA;
  border: 3px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  transform: translate(-50%, -50%);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
  z-index: 2;
}
.filter-sidebar .dual-range-slider .slider-thumb:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.filter-sidebar .dual-range-slider .slider-thumb:active {
  transform: translate(-50%, -50%) scale(1.2);
}
.filter-sidebar .dual-range-slider .slider-thumb.slider-thumb-min {
  left: 0%;
}
.filter-sidebar .dual-range-slider .slider-thumb.slider-thumb-max {
  left: 100%;
}
.filter-sidebar {
  /* 价格输入区域样式 */
}
.filter-sidebar .price-inputs-container {
  order: -1; /* 将价格输入区域移到滑块上方 */
}
.filter-sidebar {
  /* 筛选项样式 */
}
.filter-sidebar .form-check {
  margin-bottom: 0.5rem;
}
.filter-sidebar .form-check .form-check-input:checked {
  background-color: #4BC6CA;
  border-color: #4BC6CA;
}
.filter-sidebar .form-check .form-check-input:focus {
  border-color: rgba(75, 198, 202, 0.5);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(75, 198, 202, 0.25);
}
.filter-sidebar .form-check .form-check-label {
  font-size: 14px;
  color: #495057;
  cursor: pointer;
}
.filter-sidebar .form-check .form-check-label:hover {
  color: #4BC6CA;
}
.filter-sidebar {
  /* 卡片样式优化 */
}
.filter-sidebar .card {
  border-radius: 8px;
  overflow: hidden;
}
.filter-sidebar .card .card-header {
  border-bottom: 1px solid #e9ecef;
  padding: 1rem;
}
.filter-sidebar .card .card-header h6 {
  font-size: 16px;
  margin-bottom: 0;
}
.filter-sidebar .card .card-body {
  padding: 1rem;
}
.filter-sidebar {
  /* 清除筛选按钮样式 */
}
.filter-sidebar .clear-filters-btn {
  background-color: #6c757d;
  border-color: #6c757d;
  color: #fff;
  font-size: 14px;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.filter-sidebar .clear-filters-btn:hover {
  background-color: #5a6268;
  border-color: #545b62;
}
.filter-sidebar .clear-filters-btn:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
.filter-sidebar {
  /* 响应式样式 */
}
@media (max-width: 767.98px) {
  .filter-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    height: 100dvh;
    background: #fff;
    z-index: 1050;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    overscroll-behavior: contain;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    /* Extra bottom inset: thumb reach + iOS safe area; keeps clear button off the screen edge */
    padding-bottom: max(2.25rem, 1.25rem + env(safe-area-inset-bottom, 0px));
  }
  .filter-sidebar.show {
    transform: translateX(0);
  }
}

/* 遮罩层样式 */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  display: none;
}

/* 筛选切换按钮样式 */
#toggleFilterSidebar {
  background-color: #4BC6CA;
  border-color: #4BC6CA;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.2s ease;
}
#toggleFilterSidebar:hover {
  background-color: rgb(51.4077253219, 170.7124463519, 174.5922746781);
  border-color: rgb(45.6072961373, 151.4506437768, 154.8927038627);
}
#toggleFilterSidebar:focus {
  box-shadow: 0 0 0 0.2rem rgba(75, 198, 202, 0.5);
}
#toggleFilterSidebar i {
  margin-right: 0.5rem;
}
@media (min-width: 768px) {
  #toggleFilterSidebar {
    display: none;
  }
}

.section-header {
  margin-bottom: 48px;
}
.section-header .eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
  margin: 0;
}
.section-header h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 2px;
  background: var(--primary);
}
.section-header p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 16px 0 0;
  max-width: 640px;
}
.section-header.row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-inline: 0;
}
.section-header.row .left {
  flex: 1;
}
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 24px;
  }
}

[dir=rtl] .section-header h2::after {
  left: auto;
  right: 0;
}

.btn-primary {
  --bs-btn-bg: var(--primary);
  --bs-btn-border-color: var(--primary);
  --bs-btn-color: #fff;
  --bs-btn-hover-bg: var(--primary-dark);
  --bs-btn-hover-border-color: var(--primary-dark);
  --bs-btn-hover-color: #fff;
  --bs-btn-active-bg: var(--primary-dark);
  --bs-btn-active-border-color: var(--primary-dark);
  --bs-btn-active-color: #fff;
  --bs-btn-disabled-bg: var(--primary);
  --bs-btn-disabled-border-color: var(--primary);
  --bs-btn-disabled-color: #fff;
}
.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-outline {
  --bs-btn-bg: transparent;
  --bs-btn-border-color: var(--ink);
  --bs-btn-color: var(--ink);
  --bs-btn-hover-bg: transparent;
  --bs-btn-hover-border-color: var(--primary-dark);
  --bs-btn-hover-color: var(--primary-dark);
  --bs-btn-active-bg: transparent;
  --bs-btn-active-border-color: var(--primary-dark);
  --bs-btn-active-color: var(--primary-dark);
  border: 1.5px solid var(--bs-btn-border-color);
  background: var(--bs-btn-bg);
  color: var(--bs-btn-color);
}
.btn-outline:hover {
  border-color: var(--bs-btn-hover-border-color);
  color: var(--bs-btn-hover-color);
}

.btn-warm {
  --bs-btn-bg: var(--warm-cta);
  --bs-btn-border-color: var(--warm-cta);
  --bs-btn-color: #fff;
  --bs-btn-hover-bg: #B85F44;
  --bs-btn-hover-border-color: #B85F44;
  --bs-btn-hover-color: #fff;
  --bs-btn-active-bg: #B85F44;
  --bs-btn-active-border-color: #B85F44;
  --bs-btn-active-color: #fff;
  --bs-btn-disabled-bg: var(--warm-cta);
  --bs-btn-disabled-border-color: var(--warm-cta);
  --bs-btn-disabled-color: #fff;
}
.btn-warm:hover {
  transform: translateY(-1px);
}

.btn-xs {
  height: 36px;
  padding: 0 16px;
  font-size: 13px;
  border-radius: 6px;
  line-height: 1.2;
}

.btn-block {
  display: flex;
  width: 100%;
  justify-content: center;
}

.product-grid-item {
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  .product-grid-item {
    margin-bottom: 30px;
    padding-bottom: 10px;
  }
  .product-grid-item:hover .product-bottom-btns {
    transform: translateY(0) !important;
  }
  .product-grid-item:hover .product-price {
    transform: translateY(100%);
  }
}
.product-grid-item:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.product-grid-item .image {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.product-grid-item .image .product-main-image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transition: box-shadow 0.3s ease-in-out, opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  display: block;
}
.product-grid-item .image .product-hover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  z-index: 2;
}
.product-grid-item .image:has(.product-hover-image):hover .product-main-image {
  opacity: 0.9;
  transform: scale(0.95);
}
.product-grid-item .image:has(.product-hover-image):hover .product-hover-image {
  opacity: 1;
  transform: scale(1);
}
.product-grid-item .image .cancel-favorite {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  color: #b00101;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 3;
}
.product-grid-item .image .cancel-favorite:hover {
  color: #fff;
  background-color: #b00101;
}
.product-grid-item .product-item-info {
  text-align: center;
}
.product-grid-item .product-item-info .product-name {
  padding: 0 5px;
  font-size: 0.875rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #222;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-grid-item .product-item-info .product-name a {
  color: inherit;
}
.product-grid-item .product-item-info .product-name a:hover {
  text-decoration: underline;
  color: #4BC6CA;
}
.product-grid-item .product-item-info .product-bottom {
  position: relative;
  overflow: hidden;
}
.product-grid-item .product-item-info .product-bottom-btns {
  transform: translateY(-100%);
  transition: transform 0.3s;
}
.product-grid-item .product-item-info .product-bottom-btns .btn-add-cart {
  font-weight: bold;
  font-size: 16px;
  text-decoration: underline;
  color: #4BC6CA;
}
.product-grid-item .product-item-info .product-price {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  width: 100%;
  transition: transform 0.3s;
}
.product-grid-item .product-item-info .product-price .price-new {
  font-size: 1rem;
  font-weight: bold;
  color: #E53E3E;
}
.product-grid-item .product-item-info .product-price .price-old {
  font-size: 0.9rem;
  color: #768088;
  text-decoration: line-through;
  margin-left: 10px;
  margin-right: 10px;
}

.list {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #eee;
  padding-bottom: 1.4rem;
  margin-bottom: 1.4rem;
}
.list .image {
  flex: 0 0 200px;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.list .product-item-info {
  flex: 0.2;
  padding-left: 20px;
  padding-top: 10px;
  text-align: left;
}
.list .product-item-info .sub-product-title {
  margin-top: 10px;
  margin-bottom: 20px;
}
.list .product-item-info .product-bottom {
  margin-top: 10px;
  margin-bottom: 20px;
}
.list .product-item-info .product-price {
  text-align: left;
  justify-content: flex-start;
}
.list .product-item-info .product-price .price-old {
  margin-left: 0;
}
.list .product-item-info .add-wishlist {
  margin-top: 10px;
  margin-bottom: 20px;
  max-width: 100px;
}

.module-product-tab .nav-tabs {
  display: flex;
  justify-content: center;
  border: none;
  margin-bottom: 20px;
  margin-top: -6px;
}
@media (min-width: 992px) {
  .module-product-tab .nav-tabs {
    margin-bottom: 40px;
  }
}
.module-product-tab .nav-tabs .nav-link {
  border: none !important;
  color: #7E7E7E;
  border-radius: 50px;
  margin: 0;
  font-size: 12px;
  font-weight: bold;
}
@media (min-width: 992px) {
  .module-product-tab .nav-tabs .nav-link {
    margin: 0 10px;
    font-size: 14px;
  }
}
.module-product-tab .nav-tabs .nav-link:hover {
  background-color: #E6F7F8;
}
.module-product-tab .nav-tabs .nav-link.active {
  background-color: #E6F7F8;
  color: #4BC6CA;
}

/*
 * News / articles shared module.
 *
 * Contains:
 *  1. .blog-item / .blog-* — legacy shared/blog.blade.php card (kept for
 *     backward compatibility with tags/show + catalogs/show).
 *  2. .news-card / .news-grid / .news-featured — unified article card used
 *     across home + articles index + articles show (4-col grid, 16px
 *     rounded corners, hairline border, 180px cover with primary-50→100
 *     gradient placeholder, cat badge + h4 + meta row).
 *
 * Bodies wrap their internal elements with semantic aliases:
 *   images:  .img  (home uses .news-img, both are matched)
 *   content: .body (home uses .news-body)
 *   badge:   .cat  (home uses .news-cat)
 *   meta:    .meta (home uses .news-date / no meta)
 */
/* ============================================================
 * 1. Legacy blog-item (used by shared/blog.blade.php)
 * ============================================================ */
.blog-item {
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .blog-item {
    margin-bottom: 30px;
  }
}
.blog-item .image {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 12px;
  transition: box-shadow 0.3s ease-in-out;
}
.blog-item .image:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.blog-item .image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
  transition: transform 0.3s ease-in-out;
}
.blog-item .image:hover img {
  transform: scale(1.02);
}
.blog-item .blog-item-info .blog-catalog {
  font-weight: bold;
  color: #4BC6CA;
  margin-bottom: 4px;
}
.blog-item .blog-item-info .blog-title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .blog-item .blog-item-info .blog-title {
    font-size: 18px;
  }
}
.blog-item .blog-item-info .blog-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}
.blog-item .blog-item-info .blog-title a:hover {
  color: #4BC6CA;
}
.blog-item .blog-item-info .author-wrap {
  display: flex;
  align-items: center;
  color: #777;
}
.blog-item .blog-item-info .author-wrap .blog-author {
  margin-right: 20px;
}

/* ============================================================
 * 2. Unified news-card · home + articles (T09 redesign)
 * ============================================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 992px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

.news-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 16px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: all 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
@media (prefers-reduced-motion: no-preference) {
  .news-card:hover {
    box-shadow: 0 12px 32px rgba(75, 198, 202, 0.1);
    transform: translateY(-4px);
    border-color: transparent;
  }
}
.news-card {
  /* Cover image — works for both .img (articles) and .news-img (home).
     Articles uses <a class="img"> wrapper; home uses <div class="news-img">.
     Both need display:flex to honor 180px height. */
}
.news-card > .img,
.news-card > .news-img,
.news-card > a.img,
.news-card > a.news-img {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 180px;
  background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
  border-radius: 0;
}
.news-card > .img svg,
.news-card > .news-img svg,
.news-card > a.img svg,
.news-card > a.news-img svg {
  width: 48px;
  height: 48px;
  color: var(--primary);
  opacity: 0.5;
}
.news-card > .img img,
.news-card > .news-img img,
.news-card > a.img img,
.news-card > a.news-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.news-card {
  /* Body — works for both .body (articles) and .news-body (home) */
}
.news-card > .body,
.news-card > .news-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-card .cat,
.news-card .news-cat {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.news-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  margin: 0 0 12px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card h4 a {
  color: inherit;
  text-decoration: none;
}
.news-card h4 a:hover {
  color: var(--primary);
}
.news-card {
  /* Footer meta — works for .meta (articles) and .news-date (home) */
}
.news-card > .body .meta,
.news-card > .news-body .meta,
.news-card > .body + .news-date,
.news-card > .news-body .news-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--hairline);
}
.news-card {
  /* home-only legacy meta (no .meta wrapper, just .news-date) */
}
.news-card > .news-body .news-date {
  display: block;
  border-top: none;
  padding-top: 0;
}

.rate {
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
}

.rating {
  display: flex;
  flex-direction: row-reverse;
}

.rating > input {
  display: none;
}

.rating > label {
  position: relative;
  width: 1em;
  font-size: 30px;
  font-weight: 300;
  color: #e31052;
  cursor: pointer;
}

.rating > label::before {
  content: "★";
  position: absolute;
  opacity: 0;
}

.rating > label:hover:before,
.rating > label:hover ~ label:before {
  opacity: 1 !important;
}

.rating > input:checked ~ label:before {
  opacity: 1;
}

.rating:hover > input:checked ~ label:before {
  opacity: 0.4;
}

.buttons {
  top: 36px;
  position: relative;
}

.rating-submit {
  border-radius: 8px;
  color: #fff;
  height: auto;
}

.rating-submit:hover {
  color: #fff;
}

.line {
  width: 50%;
  height: 1px;
  background: #c3c1c1;
}

.word {
  color: #c3c1c1;
}

.social-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #4BC6CA;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 1.5rem;
  border: none;
}

/*
 * T01 Home (/) — 8 sections per design-preview §home-design-preview.html (行号 599-1100).
 * Scope: body.page-home. Uses CSS custom properties exposed in base/variables.scss.
 * All colors via var(--*) so brand swap is one file.
 */
.module-line {
  width: 100%;
}
.module-line .swiper {
  width: 100%;
  aspect-ratio: 21/9;
  max-height: 80vh;
  overflow: hidden;
  background: var(--bg-soft);
}
@media (max-width: 768px) {
  .module-line .swiper {
    aspect-ratio: 16/9;
    max-height: 70vh;
  }
}
.module-line .swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}
.module-line .swiper .swiper-slide .home-slideshow-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.module-line .swiper .swiper-slide img.img-fluid {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin: 0 auto;
}

.page-home-hero {
  padding: 64px 0 56px;
  background: radial-gradient(circle at 80% 42%, var(--primary-50), transparent 52%), var(--bg-soft);
}
.page-home-hero .hero-grid {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 992px) {
  .page-home-hero .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.page-home-hero .hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.page-home-hero .hero-title {
  font-size: 44px;
  line-height: 1.15;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 20px;
}
.page-home-hero .hero-title .accent {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (max-width: 768px) {
  .page-home-hero .hero-title {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .page-home-hero .hero-title {
    font-size: 28px;
  }
}
.page-home-hero .hero-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 0 32px;
}
.page-home-hero .hero-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.page-home-hero .hero-cta .hero-btn-primary {
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 8px;
}
.page-home-hero .hero-cta .hero-btn-secondary {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  padding: 12px 0;
  position: relative;
  transition: color 0.18s ease;
}
.page-home-hero .hero-cta .hero-btn-secondary::after {
  content: "→";
  margin-left: 6px;
  transition: transform 0.18s ease;
}
.page-home-hero .hero-cta .hero-btn-secondary:hover {
  color: var(--primary-dark);
}
.page-home-hero .hero-cta .hero-btn-secondary:hover::after {
  transform: translateX(4px);
}
.page-home-hero .hero-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 560px;
}
@media (max-width: 576px) {
  .page-home-hero .hero-trust {
    grid-template-columns: repeat(2, 1fr);
  }
}
.page-home-hero .hero-trust .hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
}
.page-home-hero .hero-trust .hero-trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}
.page-home-hero .hero-right .hero-image {
  position: relative;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-home-hero .hero-right .hero-image-placeholder {
  font-size: 14px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}
.page-home-hero .hero-right .hero-image-photo {
  width: 112%;
  max-width: 112%;
  height: auto;
  display: block;
  margin: -6% -6% -6% auto;
  background: transparent;
  mix-blend-mode: multiply;
  -webkit-mask-image: linear-gradient(to bottom, #000 78%, transparent 100%), linear-gradient(to right, #000 92%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to bottom, #000 78%, transparent 100%), linear-gradient(to right, #000 92%, transparent 100%);
  -webkit-mask-composite: source-in, xor;
          mask-composite: intersect;
}
@media (max-width: 992px) {
  .page-home-hero .hero-right .hero-image-photo {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }
}
.page-home-hero .hero-right .hero-caption-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: #fff;
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: 0 16px 40px -16px rgba(15, 31, 42, 0.18);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: calc(100% - 48px);
}
.page-home-hero .hero-right .hero-caption-card .hero-caption-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--primary-50);
  color: var(--primary-dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-home-hero .hero-right .hero-caption-card .hero-caption-icon svg {
  width: 22px;
  height: 22px;
}
.page-home-hero .hero-right .hero-caption-card .hero-caption-text {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}
.page-home-hero .hero-right .hero-caption-card .hero-caption-text strong {
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
}
.page-home-hero .hero-right .hero-caption-card .hero-caption-text span {
  font-size: 12px;
  color: var(--ink-soft);
}

.page-home-trust {
  padding: 32px 0 48px;
  background: #fff;
  border-bottom: 1px solid var(--divider);
}
.page-home-trust .trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 992px) {
  .page-home-trust .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 576px) {
  .page-home-trust .trust-grid {
    grid-template-columns: 1fr;
  }
}
.page-home-trust .trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.page-home-trust .trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-50);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.page-home-trust .trust-icon svg {
  width: 24px;
  height: 24px;
}
.page-home-trust .trust-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 6px;
}
.page-home-trust .trust-text p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

.page-home-search {
  position: relative;
  padding: 64px 0 72px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff;
  overflow: hidden;
}
.page-home-search .home-search-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.page-home-search .home-search-bg .home-search-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
}
.page-home-search .home-search-bg .glow-1 {
  width: 380px;
  height: 380px;
  top: -140px;
  right: -80px;
  background: rgba(255, 255, 255, 0.22);
}
.page-home-search .home-search-bg .glow-2 {
  width: 320px;
  height: 320px;
  bottom: -150px;
  left: -70px;
  background: rgba(94, 234, 212, 0.35);
}
.page-home-search .home-search-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.page-home-search .home-search-head {
  margin-bottom: 28px;
}
.page-home-search .home-search-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.page-home-search .home-search-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 12px;
  color: #fff;
}
@media (max-width: 768px) {
  .page-home-search .home-search-title {
    font-size: 26px;
  }
}
@media (max-width: 576px) {
  .page-home-search .home-search-title {
    font-size: 22px;
  }
}
.page-home-search .home-search-subtitle {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
  margin: 0;
}
@media (max-width: 576px) {
  .page-home-search .home-search-subtitle {
    font-size: 14px;
  }
}
.page-home-search .home-search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 999px;
  padding: 8px 8px 8px 24px;
  box-shadow: 0 24px 48px -16px rgba(15, 31, 42, 0.35);
}
.page-home-search .home-search-box .home-search-icon {
  width: 22px;
  height: 22px;
  color: var(--ink-muted);
  flex-shrink: 0;
}
.page-home-search .home-search-box .home-search-input {
  flex: 1;
  border: 0;
  background: transparent;
  font-size: 16px;
  color: var(--ink);
  padding: 14px 8px;
  outline: none;
  min-width: 0;
}
.page-home-search .home-search-box .home-search-input::-moz-placeholder {
  color: var(--ink-muted);
}
.page-home-search .home-search-box .home-search-input::placeholder {
  color: var(--ink-muted);
}
.page-home-search .home-search-box .home-search-btn {
  border: 0;
  border-radius: 999px;
  background: var(--primary-dark);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 8px 20px -8px rgba(15, 138, 142, 0.6);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.page-home-search .home-search-box .home-search-btn:hover {
  background: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -8px rgba(15, 31, 42, 0.5);
}
@media (max-width: 576px) {
  .page-home-search .home-search-box {
    flex-direction: column;
    gap: 10px;
    border-radius: 18px;
    padding: 12px;
  }
  .page-home-search .home-search-box .home-search-input {
    padding: 10px 8px;
    text-align: center;
  }
  .page-home-search .home-search-box .home-search-btn {
    width: 100%;
    padding: 14px;
  }
}
.page-home-search .home-search-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}
.page-home-search .home-search-tags .home-search-tags-label {
  font-size: 13px;
  opacity: 0.8;
  margin-right: 4px;
}
.page-home-search .home-search-tags .home-search-tag {
  display: inline-block;
  font-size: 13px;
  color: #fff;
  text-decoration: none;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: background 0.18s ease, transform 0.18s ease;
}
.page-home-search .home-search-tags .home-search-tag:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.page-home-services {
  padding: 72px 0;
  background: var(--bg-soft);
}
.page-home-services .service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 992px) {
  .page-home-services .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .page-home-services .service-grid {
    grid-template-columns: 1fr;
  }
}
.page-home-services .service-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px 20px;
  box-shadow: 0 4px 16px -8px rgba(15, 31, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
@media (prefers-reduced-motion: no-preference) {
  .page-home-services .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px -8px rgba(15, 31, 42, 0.12);
  }
}
.page-home-services .service-top {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.page-home-services .service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--primary-50);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.page-home-services .service-icon svg {
  width: 28px;
  height: 28px;
}
.page-home-services .service-body {
  flex: 1;
}
.page-home-services .service-body h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.35;
}
.page-home-services .service-body p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}
.page-home-services .service-divider {
  height: 1px;
  background: var(--divider);
  margin: 0 0 16px;
}
.page-home-services .service-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.page-home-services .service-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.2;
}
.page-home-services .service-price .price-label {
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}
.page-home-services .service-price .price-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--price);
}
.page-home-services .service-price .price-unit {
  font-size: 11.5px;
  color: var(--ink-muted);
}

.page-home-process {
  padding: 72px 0;
  background: #fff;
}
.page-home-process .process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
@media (max-width: 992px) {
  .page-home-process .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .page-home-process .process-grid .process-line {
    display: none;
  }
}
@media (max-width: 576px) {
  .page-home-process .process-grid {
    grid-template-columns: 1fr;
  }
}
.page-home-process .process-step {
  text-align: center;
}
.page-home-process .process-step .process-num {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1;
}
.page-home-process .process-step .process-line {
  height: 1px;
  border-top: 1px dashed var(--divider);
  width: 80%;
  margin: 16px auto 20px;
}
.page-home-process .process-step h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 8px;
}
.page-home-process .process-step p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
  max-width: 220px;
  margin-inline: auto;
}

.page-home-hospitals {
  padding: 72px 0;
  background: var(--bg-soft);
}
.page-home-hospitals .hospital-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 992px) {
  .page-home-hospitals .hospital-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .page-home-hospitals .hospital-grid {
    grid-template-columns: 1fr;
  }
}
.page-home-hospitals .hospital-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px -8px rgba(15, 31, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media (prefers-reduced-motion: no-preference) {
  .page-home-hospitals .hospital-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px -8px rgba(15, 31, 42, 0.12);
  }
}
.page-home-hospitals .hospital-img {
  position: relative;
  aspect-ratio: 400/250;
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--primary-100) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-home-hospitals .hospital-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.page-home-hospitals .hospital-img svg {
  width: 56px;
  height: 56px;
  color: var(--primary);
  opacity: 0.5;
}
.page-home-hospitals .hospital-img .hospital-img-label {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 11px;
  color: var(--ink-muted);
  background: rgba(255, 255, 255, 0.85);
  padding: 2px 8px;
  border-radius: 6px;
}
.page-home-hospitals .hospital-img.hospital-img-placeholder {
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--primary-100) 100%);
  position: relative;
}
.page-home-hospitals .hospital-img.hospital-img-placeholder .hospital-img-initial {
  font-size: 96px;
  font-weight: 700;
  color: rgba(75, 198, 202, 0.32);
  letter-spacing: 0;
  line-height: 1;
}
.page-home-hospitals .hospital-img.gradient-d1 {
  background: linear-gradient(135deg, #E6F7F8 0%, #C4EBED 60%, #A8DADC 100%);
}
.page-home-hospitals .hospital-img.gradient-d4 {
  background: linear-gradient(135deg, #F0F9FA 0%, #CFFAFE 50%, #A5F3FC 100%);
}
.page-home-hospitals .hospital-img.gradient-d7 {
  background: linear-gradient(135deg, #ECFEFF 0%, #CFFAFE 50%, #67E8F9 100%);
}
.page-home-hospitals .hospital-img.gradient-d10 {
  background: linear-gradient(135deg, #F0FDFA 0%, #CCFBF1 50%, #5EEAD4 100%);
}
.page-home-hospitals .hospital-img.gradient-d1 .hospital-img-initial, .page-home-hospitals .hospital-img.gradient-d4 .hospital-img-initial, .page-home-hospitals .hospital-img.gradient-d7 .hospital-img-initial, .page-home-hospitals .hospital-img.gradient-d10 .hospital-img-initial {
  color: rgba(15, 138, 142, 0.28);
}
.page-home-hospitals .hospital-body {
  padding: 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.page-home-hospitals .hospital-body h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}
.page-home-hospitals .hospital-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.page-home-hospitals .hospital-tags .tag {
  display: inline-block;
  font-size: 11.5px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--primary-50);
  color: var(--primary-dark);
  border: 1px solid var(--primary-100);
}
.page-home-hospitals .hospital-tags .tag-success {
  background: rgba(217, 119, 87, 0.1);
  color: var(--warm-cta);
  border-color: rgba(217, 119, 87, 0.3);
}
.page-home-hospitals .hospital-address {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.4;
}
.page-home-hospitals .hospital-address svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
  flex-shrink: 0;
}
.page-home-hospitals .text-link {
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.page-home-hospitals .text-link::after {
  content: " →";
  transition: transform 0.18s ease;
}
.page-home-hospitals .text-link:hover::after {
  transform: translateX(4px);
  display: inline-block;
}

.page-home-doctors {
  padding: 72px 0;
  background: #fff;
}
.page-home-doctors .hospital-group {
  margin-bottom: 32px;
}
.page-home-doctors .hospital-group:last-child {
  margin-bottom: 0;
}
.page-home-doctors .hospital-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--divider);
}
.page-home-doctors .hospital-group-head .hospital-group-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}
.page-home-doctors .hospital-group-head .text-link {
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.page-home-doctors .hospital-group-head .text-link::after {
  content: " →";
}
.page-home-doctors .hospital-group-head .text-link:hover::after {
  display: inline-block;
  transform: translateX(4px);
}
.page-home-doctors .doctor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 992px) {
  .page-home-doctors .doctor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .page-home-doctors .doctor-grid {
    grid-template-columns: 1fr;
  }
}
.page-home-doctors .doctor-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px 14px;
  text-align: center;
  border: 1px solid var(--divider);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
@media (prefers-reduced-motion: no-preference) {
  .page-home-doctors .doctor-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px -6px rgba(75, 198, 202, 0.25);
  }
}
.page-home-doctors .doctor-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--primary-50);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-home-doctors .doctor-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-home-doctors .doctor-avatar svg {
  width: 40px;
  height: 40px;
}
.page-home-doctors .doctor-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 4px;
}
.page-home-doctors .doctor-title {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.page-home-doctors .doctor-dept {
  font-size: 12px;
  color: var(--primary-dark);
  font-weight: 500;
}

.page-home-news {
  padding: 72px 0;
  background: var(--bg-soft);
}
.page-home-news .text-link {
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.page-home-news .text-link::after {
  content: " →";
}
.page-home-news .text-link:hover::after {
  display: inline-block;
  transform: translateX(4px);
}

.page-home-cta {
  padding: 72px 0 80px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff;
}
.page-home-cta .cta-top-text {
  text-align: center;
  margin-bottom: 40px;
}
.page-home-cta .cta-top-text h2 {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #fff;
}
@media (max-width: 576px) {
  .page-home-cta .cta-top-text h2 {
    font-size: 22px;
  }
}
.page-home-cta .cta-top-text .cta-top-sub {
  font-size: 15px;
  opacity: 0.9;
  margin: 0;
}
.page-home-cta .cta-card {
  background: #fff;
  color: var(--ink);
  border-radius: 20px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  box-shadow: 0 32px 64px -24px rgba(15, 31, 42, 0.4);
}
@media (max-width: 768px) {
  .page-home-cta .cta-card {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }
}
.page-home-cta .cta-left h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 10px;
}
.page-home-cta .cta-left p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 20px;
}
.page-home-cta .cta-left .btn {
  padding: 10px 24px;
  font-weight: 600;
  border-radius: 8px;
  font-size: 14px;
}
.page-home-cta .cta-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-left: 24px;
  border-left: 1px solid var(--divider);
}
@media (max-width: 768px) {
  .page-home-cta .cta-right {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--divider);
    padding-top: 18px;
  }
}
.page-home-cta .cta-contact {
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-home-cta .cta-contact .cta-contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary-50);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.page-home-cta .cta-contact .cta-contact-icon svg {
  width: 22px;
  height: 22px;
}
.page-home-cta .cta-contact .cta-contact-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.page-home-cta .cta-contact .cta-contact-text .cta-contact-label {
  font-size: 12px;
  color: var(--ink-muted);
}
.page-home-cta .cta-contact .cta-contact-text .cta-contact-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.page-home-hospitals .section-header.row,
.page-home-news .section-header.row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}
.page-home-hospitals .section-header.row .left,
.page-home-news .section-header.row .left {
  flex: 1;
}

.page-home-choose {
  padding: 56px 0;
  background: var(--bg-soft);
  text-align: center;
}
.page-home-choose h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 10px;
}
@media (max-width: 576px) {
  .page-home-choose h2 {
    font-size: 24px;
  }
}
.page-home-choose .choose-sub {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0 auto 24px;
  max-width: 640px;
}
.page-home-choose .choose-cta {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 16px 32px -12px rgba(75, 198, 202, 0.45);
}

.page-home-subscribe {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff;
}
.page-home-subscribe .subscribe-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 768px) {
  .page-home-subscribe .subscribe-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.page-home-subscribe .subscribe-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 8px;
}
.page-home-subscribe .subscribe-h2 {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 8px;
}
@media (max-width: 576px) {
  .page-home-subscribe .subscribe-h2 {
    font-size: 20px;
  }
}
.page-home-subscribe .subscribe-sub {
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
}
.page-home-subscribe .subscribe-form {
  display: flex;
  gap: 12px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 6px;
  backdrop-filter: blur(4px);
}
.page-home-subscribe .subscribe-form input[type=email] {
  flex: 1;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 12px 18px;
  font-size: 15px;
  outline: none;
}
.page-home-subscribe .subscribe-form input[type=email]::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.page-home-subscribe .subscribe-form input[type=email]::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.page-home-subscribe .subscribe-form button {
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--primary-dark);
  font-weight: 600;
  padding: 12px 28px;
  cursor: pointer;
  transition: transform 0.18s ease;
}
.page-home-subscribe .subscribe-form button:hover {
  transform: translateX(2px);
}
@media (max-width: 576px) {
  .page-home-subscribe .subscribe-form {
    flex-direction: column;
    border-radius: 16px;
  }
  .page-home-subscribe .subscribe-form button {
    width: 100%;
  }
}

/*
 * Articles / News pages — T09 Dovecure redesign
 * 1:1 with docs/design-preview/news.html + news-detail.html
 */
/* ============================================================
 * LIST · /articles
 * ============================================================ */
.news-page-head {
  padding: 80px 0 64px;
  background: linear-gradient(180deg, #fff 0%, var(--primary-50) 100%);
  position: relative;
  overflow: hidden;
}
.news-page-head::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-100) 0%, transparent 70%);
  opacity: 0.5;
}
.news-page-head .container {
  position: relative;
  z-index: 1;
}
.news-page-head .breadcrumb {
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 16px;
}
.news-page-head .breadcrumb a {
  color: var(--ink-muted);
}
.news-page-head .breadcrumb a:hover {
  color: var(--primary);
}
.news-page-head .breadcrumb .sep {
  margin: 0 8px;
  opacity: 0.5;
}
.news-page-head h1 {
  font-size: 44px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 16px;
}
.news-page-head h1 .accent {
  color: var(--primary-dark);
}
.news-page-head .subtitle {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 720px;
  margin-bottom: 0;
}

body.page-news .news-section {
  padding: 96px 0;
}

/* Generic .news-section padding (used on both /articles and detail page) */
.news-section {
  padding: 96px 0;
}

/* category tabs */
.cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--hairline);
}
.cat-tabs .cat-tab {
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  background: #fff;
  border: 1px solid var(--divider);
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 200ms;
  text-decoration: none;
}
.cat-tabs .cat-tab:hover {
  color: var(--primary);
  border-color: var(--primary);
}
.cat-tabs .cat-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.cat-tabs .cat-tab .count {
  margin-left: 4px;
  opacity: 0.7;
  font-size: 12px;
}

/* featured · 头条特色大图 (1.2fr / 1fr) */
.news-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--hairline);
  color: inherit;
  text-decoration: none;
}
.news-featured .featured-img {
  height: 360px;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-featured .featured-img svg {
  width: 80px;
  height: 80px;
  color: var(--primary);
  opacity: 0.5;
}
.news-featured .featured-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.news-featured .featured-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news-featured .cat {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.news-featured h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 16px;
}
.news-featured h2 a:hover {
  color: var(--primary);
}
.news-featured .desc {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 24px;
}
.news-featured .meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-muted);
}
.news-featured:hover h2 {
  color: var(--primary);
}
.news-featured {
  transition: all 240ms;
}

/* .news-grid + .news-card 统一样式见 modules/news.scss（home + articles 共享）
   本文件保留 list 独有的 .news-featured 和 .news-pagination */
/* pagination (matches demo design: ‹ 1 2 ... 16 › with primary active) */
.news-pagination {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.news-pagination .pagination {
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.news-pagination .pagination .page-item {
  display: inline-flex;
}
.news-pagination .pagination .page-link {
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--divider);
  border-radius: 6px;
  text-decoration: none;
  transition: color 200ms, border-color 200ms, background 200ms;
}
.news-pagination .pagination a.page-link:hover {
  color: var(--primary);
  border-color: var(--primary);
}
.news-pagination .pagination .page-item.active .page-link {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.news-pagination .pagination .page-item.disabled .page-link {
  opacity: 0.5;
  cursor: not-allowed;
  color: var(--ink-muted);
}

/* ============================================================
 * DETAIL · /articles/{slug}
 * ============================================================ */
.article-page-head {
  padding: 56px 0 32px;
  background: linear-gradient(180deg, #fff 0%, var(--primary-50) 100%);
  position: relative;
  overflow: hidden;
}
.article-page-head::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-100) 0%, transparent 70%);
  opacity: 0.5;
}
.article-page-head .container {
  position: relative;
  z-index: 1;
}
.article-page-head .breadcrumb {
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 16px;
}
.article-page-head .breadcrumb a {
  color: var(--ink-muted);
}
.article-page-head .breadcrumb a:hover {
  color: var(--primary);
}
.article-page-head .breadcrumb .sep {
  margin: 0 8px;
  opacity: 0.5;
}
.article-page-head .cat {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-50);
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.article-page-head h1 {
  font-size: 36px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 24px;
  max-width: 880px;
}
.article-page-head .meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 24px;
  font-size: 13px;
  color: var(--ink-muted);
}
.article-page-head .meta .author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.article-page-head .meta .author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-50);
  display: flex;
  align-items: center;
  justify-content: center;
}
.article-page-head .meta .author-avatar svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}
.article-page-head .meta .author-name {
  color: var(--ink);
  font-weight: 600;
}
.article-page-head .meta .divider {
  color: var(--ink-muted);
  opacity: 0.5;
}

.article-cover {
  background: #fff;
  margin-top: 24px;
  margin-bottom: 0;
}
.article-cover .cover-img {
  width: 100%;
  height: 480px;
  background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
}
.article-cover .cover-img svg {
  width: 80px;
  height: 80px;
  color: var(--primary);
  opacity: 0.3;
}
.article-cover .cover-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.article-cover .cover-img::after {
  content: "1920×900 · Cover";
  position: absolute;
  bottom: 16px;
  right: 20px;
  color: rgba(15, 31, 42, 0.4);
  font-size: 12px;
  letter-spacing: 0.1em;
  z-index: 1;
}

.article-layout {
  background: #fff;
  padding: 80px 0 96px;
}

.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 64px;
  align-items: start;
}

/* ---- article body ---- */
.article-body {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.9;
  min-width: 0; /* allow grid item to shrink */
  padding: 16px 0 32px;
}
.article-body .article-lead {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--hairline);
}
.article-body .content-body {
  margin-top: 24px;
}
.article-body .content-body p {
  margin-bottom: 24px;
  color: var(--ink-soft);
}
.article-body .content-body h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin: 48px 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-50);
}
.article-body .content-body h2 .num {
  color: var(--primary);
  margin-right: 8px;
}
.article-body .content-body h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  margin: 32px 0 16px;
}
.article-body .content-body strong {
  color: var(--ink);
  font-weight: 600;
}
.article-body .content-body ul, .article-body .content-body ol {
  margin: 0 0 24px 24px;
}
.article-body .content-body ul li, .article-body .content-body ol li {
  margin-bottom: 10px;
  color: var(--ink-soft);
}
.article-body .content-body blockquote {
  margin: 32px 0;
  padding: 24px 32px;
  background: var(--primary-50);
  border-left: 4px solid var(--primary);
  border-radius: 0 8px 8px 0;
  color: var(--ink);
  font-style: italic;
}
.article-body .content-body blockquote p {
  color: var(--ink);
  margin: 0;
}
.article-body .content-body blockquote cite {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: var(--ink-muted);
  font-style: normal;
}
.article-body .content-body .key-point {
  background: linear-gradient(135deg, var(--primary-50), #fff);
  border-left: 4px solid var(--primary);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin: 32px 0;
}
.article-body .content-body .key-point h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.article-body .content-body .key-point p {
  color: var(--ink);
  margin: 0;
}
.article-body .content-body .img-caption {
  width: 100%;
  height: 320px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 32px 0;
  color: rgba(15, 31, 42, 0.4);
  font-size: 13px;
}

/* ---- sidebar (sticky top:120px) ---- */
.article-sidebar {
  position: sticky;
  top: 120px;
  align-self: start;
}
.article-sidebar .sidebar-card {
  background: #fff;
  border: 1px solid var(--divider);
  border-radius: var(--radius-card);
  padding: 24px;
  margin-bottom: 20px;
}
.article-sidebar .sidebar-card h5 {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--hairline);
}
.article-sidebar .author-card {
  text-align: center;
}
.article-sidebar .author-card .avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary-50);
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.article-sidebar .author-card .avatar svg {
  width: 40px;
  height: 40px;
  color: var(--primary);
}
.article-sidebar .author-card .name {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.article-sidebar .author-card .title {
  font-size: 12px;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 12px;
}
.article-sidebar .author-card .bio {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.article-sidebar .toc-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.article-sidebar .toc-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--hairline);
}
.article-sidebar .toc-list li:last-child {
  border-bottom: none;
}
.article-sidebar .toc-list a {
  font-size: 13px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}
.article-sidebar .toc-list a::before {
  content: attr(data-num);
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  min-width: 20px;
}
.article-sidebar .toc-list a:hover {
  color: var(--primary);
}
.article-sidebar .related-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.article-sidebar .related-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--hairline);
}
.article-sidebar .related-list li:last-child {
  border-bottom: none;
}
.article-sidebar .related-list a {
  display: block;
}
.article-sidebar .related-list .cat {
  font-size: 11px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 4px;
}
.article-sidebar .related-list .title {
  font-size: 13px;
  color: var(--ink);
  line-height: 1.5;
  font-weight: 500;
}
.article-sidebar .related-list a:hover .title {
  color: var(--primary);
}

/* ---- share bar ---- */
.article-share-bar {
  max-width: 1100px;
  margin: 40px auto 0;
  padding: 24px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.article-share-bar .share-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.article-share-bar .share-tags .tags-label {
  font-size: 13px;
  color: var(--ink-muted);
  margin-right: 12px;
}
.article-share-bar .tag-pill {
  display: inline-block;
  padding: 4px 12px;
  background: var(--primary-50);
  color: var(--primary-dark);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
}
.article-share-bar .tag-pill:hover {
  background: var(--primary-100);
}
.article-share-bar .share-icons {
  display: flex;
  gap: 8px;
}
.article-share-bar .share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  transition: all 200ms;
  border: none;
  cursor: pointer;
}
.article-share-bar .share-btn:hover {
  background: var(--primary);
  color: #fff;
}
.article-share-bar .share-btn svg {
  width: 16px;
  height: 16px;
}

/* ---- prev / next ---- */
.article-prev-next {
  max-width: 1100px;
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.article-prev-next .prev-next-item {
  background: #fff;
  border: 1px solid var(--divider);
  border-radius: var(--radius-card);
  padding: 24px;
  transition: all 240ms;
  color: inherit;
}
.article-prev-next .prev-next-item:hover {
  border-color: var(--primary);
}
.article-prev-next .prev-next-item.empty {
  opacity: 0.55;
}
.article-prev-next .prev-next-item .label {
  font-size: 12px;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.article-prev-next .prev-next-item .title {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
}
.article-prev-next .prev-next-item.next {
  text-align: right;
}

/* ---- CTA section 已迁移到全站通用 footer 上方（shared/consult-cta.blade.php + layout/footer.scss）---- */
/* ============================================================
 * Responsive
 * ============================================================ */
@media (max-width: 992px) {
  .news-page-head h1 {
    font-size: 36px;
  }
  .news-featured {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .news-featured .featured-img {
    height: 240px;
  }
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .article-page-head h1 {
    font-size: 28px;
  }
  .article-cover .cover-img {
    height: 240px;
    border-radius: 8px;
  }
  .article-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .article-sidebar {
    position: static;
  }
}
@media (max-width: 576px) {
  .news-page-head {
    padding: 56px 0 40px;
  }
  .news-page-head h1 {
    font-size: 28px;
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .article-page-head h1 {
    font-size: 22px;
  }
  .article-body .content-body h2 {
    font-size: 20px;
  }
  .article-body, .article-body .content-body {
    font-size: 15px;
  }
  .article-share-bar, .article-prev-next {
    padding: 20px 0;
  }
  .article-prev-next {
    grid-template-columns: 1fr;
  }
}
body.page-login {
  margin-bottom: 0 !important;
}

.login-register-box {
  max-width: 540px;
  background-color: #F3F3F3;
  margin: 30px auto;
  padding: 16px;
}
@media (min-width: 992px) {
  .login-register-box {
    padding: 36px;
    margin: 70px auto;
  }
}
.login-register-box.iframe {
  margin: 10px 0 0;
}
.login-register-box .login-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.login-register-box .login-sub-title {
  text-align: center;
  font-size: 16px;
  color: #666666;
  margin-bottom: 30px;
}
.login-register-box .form-group input {
  border: none;
  height: 44px;
  font-size: 15px;
  border-radius: 0;
}
.login-register-box .btn-submit {
  margin-top: 30px;
}
@media (min-width: 400px) {
  .login-register-box .btn-submit {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.login-register-box .btn-submit .form-submit {
  width: 50%;
  display: block;
}
.login-register-box .btn-submit a {
  color: #222;
  display: block;
  font-weight: bold;
}
.login-register-box .auth-method-switch .btn-outline-primary.active {
  background-color: #4BC6CA;
  border-color: #4BC6CA;
  color: #fff !important;
}
.login-register-box .auth-method-switch .btn-outline-primary:not(.active) {
  color: #4BC6CA;
  background-color: #fff;
}
.login-register-box .auth-method-switch .btn-outline-primary:not(.active):hover {
  background-color: #fff;
  color: #4BC6CA;
}

.account-card-box {
  border: 1px solid #ECF0F4;
  padding: 16px;
}
@media (min-width: 992px) {
  .account-card-box {
    min-height: 621px;
  }
}
@media (min-width: 768px) {
  .account-card-box {
    padding: 30px;
  }
}
.account-card-box .account-card-title {
  margin-bottom: 30px;
}
.account-card-box .account-card-title span {
  font-size: 16px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .account-card-box .account-card-title span {
    font-size: 20px;
  }
}
.account-card-box .account-card-sub-title {
  margin-bottom: 16px;
}
.account-card-box .account-card-sub-title span {
  font-size: 16px;
  font-weight: bold;
}

body.page-account .account-info .account-data {
  border-bottom: 1px solid #ECF0F4;
  margin-bottom: 50px;
  padding-bottom: 50px;
  margin-top: 50px;
}
body.page-account .account-info .account-data .account-item-data {
  text-align: center;
}
body.page-account .account-info .account-data .account-item-data .value {
  font-size: 2rem;
  font-weight: bold;
}
body.page-account .account-info .no-order {
  background-color: #f6f6f6;
  font-size: 1rem;
}
body.page-account .account-info .no-order a {
  color: #457C46;
}

.account-sidebar {
  border: 1px solid #e8eef3;
  margin-bottom: 20px;
}
.account-sidebar .account-user {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e8eef3;
  margin: 16px;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .account-sidebar .account-user {
    margin: 30px;
    padding-bottom: 30px;
  }
}
.account-sidebar .account-user .profile {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e8eef3;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 14px;
}
.account-sidebar .account-user .account-name .name {
  font-size: 0.9rem;
}
.account-sidebar .account-links {
  list-style: none;
  padding-left: 0;
}
.account-sidebar .account-links li.active a {
  color: #222;
  border-left: 2px solid #4BC6CA;
}
.account-sidebar .account-links li a {
  color: #7C818B;
  padding: 6px 10px 6px 18px;
  margin: 20px 0;
  border-left: 2px solid transparent;
  display: flex;
  font-weight: bold;
  align-items: center;
  font-size: 1rem;
  line-height: 1;
}
@media (min-width: 768px) {
  .account-sidebar .account-links li a {
    padding: 6px 10px 6px 30px;
    margin: 26px 0;
  }
}
.account-sidebar .account-links li a:hover {
  color: #222;
}
.account-sidebar .account-links li a i {
  color: #222;
  font-size: 20px;
  margin-right: 20px;
}

.account-table-box th, .account-table-box td {
  padding: 10px 0;
}
.account-table-box th {
  border-bottom: none;
  font-size: 14px;
}
.account-table-box tr:last-child td {
  border-bottom: none;
}

body.page-categories .top-order-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 26px;
}
body.page-categories .top-order-wrap .right {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  body.page-categories .top-order-wrap .right {
    justify-content: space-between;
    width: 100%;
  }
}
body.page-categories .top-order-wrap .right .order-item {
  display: flex;
  align-items: center;
  border-right: 1px solid #eee;
  padding-right: 10px;
  margin-right: 10px;
}
body.page-categories .top-order-wrap .right .order-item span {
  color: #777;
  margin-right: 8px;
  white-space: nowrap;
}
body.page-categories .top-order-wrap .right .order-item:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}
body.page-categories .top-order-wrap .right .order-item .form-select {
  border: none;
  padding-top: 0;
  padding-bottom: 0;
}
body.page-categories .top-order-wrap .right .order-item .order-icon {
  color: #333;
  font-size: 20px;
  margin-left: 10px;
  padding: 0 6px;
}
body.page-categories .top-order-wrap .right .order-item .order-icon.active {
  background-color: #eee;
}

.product-grid-item .wishlist-container {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: none;
}
.product-grid-item .image:hover .wishlist-container {
  display: block;
}
.product-grid-item .add-wishlist {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
}
.product-grid-item .add-wishlist i {
  margin-right: 5px;
}

.filter-sidebar .filter-sidebar-item {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .filter-sidebar .filter-sidebar-item {
    margin-bottom: 40px;
  }
}
.filter-sidebar .filter-sidebar-item .title {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 14px;
}
.filter-sidebar .filter-sidebar-item .price-range .price-slider {
  position: relative;
  height: 40px;
  margin-bottom: 15px;
}
.filter-sidebar .filter-sidebar-item .price-range .price-slider .slider-track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 6px;
  background: #ff6b35;
  border-radius: 3px;
  transform: translateY(-50%);
}
.filter-sidebar .filter-sidebar-item .price-range .price-slider input[type=range] {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  height: 6px;
  background: transparent;
  pointer-events: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transform: translateY(-50%);
}
.filter-sidebar .filter-sidebar-item .price-range .price-slider input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  background: #ff6b35;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.filter-sidebar .filter-sidebar-item .price-range .price-slider input[type=range]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #ff6b35;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.filter-sidebar .filter-sidebar-item .price-range .price-slider input[type=range].slider-min {
  z-index: 2;
}
.filter-sidebar .filter-sidebar-item .price-range .price-slider input[type=range].slider-max {
  z-index: 1;
}
.filter-sidebar .filter-sidebar-item .price-range .price-inputs {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}
.filter-sidebar .filter-sidebar-item .price-range .price-inputs .price-input-group {
  flex: 1;
}
.filter-sidebar .filter-sidebar-item .price-range .price-inputs .price-input-group label {
  display: block;
  font-size: 13px;
  color: #6c757d;
  margin-bottom: 6px;
  font-weight: normal;
}
.filter-sidebar .filter-sidebar-item .price-range .price-inputs .price-input-group input {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 14px;
  background: #fff;
}
.filter-sidebar .filter-sidebar-item .price-range .price-inputs .price-input-group input:focus {
  outline: none;
  border-color: #ff6b35;
  box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.25);
}
.filter-sidebar .filter-sidebar-item .price-range .price-inputs .price-input-group input::-moz-placeholder {
  color: #adb5bd;
}
.filter-sidebar .filter-sidebar-item .price-range .price-inputs .price-input-group input::placeholder {
  color: #adb5bd;
}
.filter-sidebar .filter-sidebar-item .price-range .btn {
  width: 100%;
  background-color: #ff6b35;
  border-color: #ff6b35;
  font-size: 14px;
  padding: 10px 16px;
  font-weight: 500;
}
.filter-sidebar .filter-sidebar-item .price-range .btn:hover {
  background-color: #e55a2b;
  border-color: #e55a2b;
}
.filter-sidebar .filter-sidebar-item .price-range .btn:focus {
  box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.25);
}
.filter-sidebar .filter-sidebar-item #filter-category > .accordion-item > .accordion-title {
  padding: 4px 0;
}
.filter-sidebar .filter-sidebar-item #filter-category .accordion-item {
  border: none;
}
.filter-sidebar .filter-sidebar-item #filter-category .accordion-item .accordion-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 30px;
}
.filter-sidebar .filter-sidebar-item #filter-category .accordion-item .accordion-title > a {
  color: #222;
}
.filter-sidebar .filter-sidebar-item #filter-category .accordion-item .accordion-title .accordion-button {
  width: 30px;
  height: 30px;
  box-shadow: none;
  background-color: transparent !important;
}
.filter-sidebar .filter-sidebar-item #filter-category .accordion-item .accordion-title .accordion-button::after {
  --bs-accordion-btn-icon-width: .8rem;
  opacity: 0.7;
}
.filter-sidebar .filter-sidebar-item #filter-category .accordion-item .accordion-body {
  padding: 0;
  padding-left: 14px;
}
@media (max-width: 768px) {
  .filter-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: white;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1050;
    padding-left: 20px;
    padding-top: 20px;
  }
}

@media (max-width: 992px) {
  body.page-product .breadcrumb-wrap {
    display: none;
  }
}
body.page-product .page-product-top {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  body.page-product .page-product-top {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  body.page-product .page-product-top .product-left-col {
    padding: 0;
  }
}
body.page-product .page-product-top .product-images {
  display: flex;
}
@media (min-width: 992px) {
  body.page-product .page-product-top .product-images {
    position: sticky;
    top: 20px;
    align-self: flex-start;
  }
}
@media (max-width: 991px) {
  body.page-product .page-product-top .product-images {
    margin-bottom: 10px;
    flex-direction: column;
  }
}
body.page-product .page-product-top .product-images .sub-product-img {
  width: 100%;
  position: relative;
}
@media (min-width: 992px) {
  body.page-product .page-product-top .product-images .sub-product-img {
    width: 100px;
    height: 560px;
    flex: 0 0 100px;
    margin-right: 20px;
  }
  body.page-product .page-product-top .product-images .sub-product-img:hover .swiper .sub-product-btn {
    display: block;
  }
  body.page-product .page-product-top .product-images .sub-product-img::before, body.page-product .page-product-top .product-images .sub-product-img::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), transparent);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
  }
  body.page-product .page-product-top .product-images .sub-product-img::before {
    top: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), transparent);
  }
  body.page-product .page-product-top .product-images .sub-product-img::after {
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.1), transparent);
  }
  body.page-product .page-product-top .product-images .sub-product-img:hover::before, body.page-product .page-product-top .product-images .sub-product-img:hover::after {
    opacity: 1;
  }
}
@media (min-width: 992px) {
  body.page-product .page-product-top .product-images .sub-product-img .swiper {
    height: 100%;
  }
}
body.page-product .page-product-top .product-images .sub-product-img .swiper .swiper-slide {
  display: flex;
  justify-content: center;
}
body.page-product .page-product-top .product-images .sub-product-img .swiper .swiper-slide .thumbnail-item {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
}
body.page-product .page-product-top .product-images .sub-product-img .swiper .swiper-slide .thumbnail-item img {
  border: 1px solid #eee;
  border-radius: 2px;
  transition: border-color 0.3s ease;
}
@media (min-width: 992px) {
  body.page-product .page-product-top .product-images .sub-product-img .swiper .swiper-slide {
    width: 100px;
    height: 100px;
  }
  body.page-product .page-product-top .product-images .sub-product-img .swiper .swiper-slide .thumbnail-item:hover {
    border-color: #4BC6CA;
  }
  body.page-product .page-product-top .product-images .sub-product-img .swiper .swiper-slide .thumbnail-item.active {
    border-color: #4BC6CA;
    background-color: rgba(75, 198, 202, 0.1);
  }
}
body.page-product .page-product-top .product-images .sub-product-img .swiper .sub-product-btn {
  display: none;
}
body.page-product .page-product-top .product-images .sub-product-img .swiper .sub-product-btn > div {
  position: absolute;
  left: 0;
  width: 100%;
  height: 30px;
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 9;
  font-size: 20px;
}
body.page-product .page-product-top .product-images .sub-product-img .swiper .sub-product-btn > div:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
body.page-product .page-product-top .product-images .sub-product-img .swiper .sub-product-btn > div.sub-product-prev {
  top: 0;
}
body.page-product .page-product-top .product-images .sub-product-img .swiper .sub-product-btn > div.sub-product-next {
  bottom: 0;
}
@media (min-width: 992px) {
  body.page-product .page-product-top .product-images .sub-product-img .swiper .sub-product-pagination {
    display: none;
  }
}
body.page-product .page-product-top .product-images .main-product-img {
  cursor: pointer;
}
@media (max-width: 991px) {
  body.page-product .page-product-top .product-images .main-product-img {
    margin-top: 15px;
  }
}
body.page-product .page-product-top .product-images .mobile-product-slideshow .swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
body.page-product .page-product-top .product-images .mobile-product-slideshow .swiper .swiper-slide .video-play-overlay {
  cursor: pointer;
  transition: transform 0.3s ease;
}
body.page-product .page-product-top .product-images .mobile-product-slideshow .swiper .swiper-slide .video-play-overlay:hover {
  transform: scale(1.1);
}
body.page-product .page-product-top .product-images .mobile-product-slideshow .mobile-product-pagination {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1001;
  display: flex;
  justify-content: center;
  align-items: center;
}
body.page-product .page-product-top .product-images .mobile-product-slideshow .mobile-product-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  opacity: 1;
  margin: 0 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
body.page-product .page-product-top .product-images .mobile-product-slideshow .mobile-product-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #4BC6CA;
  transform: scale(1.2);
}
@media (min-width: 992px) {
  body.page-product .page-product-top .product-info {
    padding-left: 20px;
  }
}
body.page-product .page-product-top .product-info .product-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  body.page-product .page-product-top .product-info .product-title {
    font-size: 24px;
  }
}
body.page-product .page-product-top .product-info .product-price {
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
@media (min-width: 992px) {
  body.page-product .page-product-top .product-info .product-price {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
body.page-product .page-product-top .product-info .product-price .price {
  font-size: 20px;
  font-weight: bold;
  color: #E53E3E;
}
@media (min-width: 992px) {
  body.page-product .page-product-top .product-info .product-price .price {
    font-size: 26px;
  }
}
body.page-product .page-product-top .product-info .product-price .old-price {
  font-size: 16px;
  color: #777;
  text-decoration: line-through;
}
body.page-product .page-product-top .product-info .stock-wrap > div {
  font-weight: bold;
  font-size: 14px;
}
body.page-product .page-product-top .product-info .stock-wrap > div.in-stock {
  color: #3FC158;
  background-color: #EEF8EE;
}
body.page-product .page-product-top .product-info .stock-wrap > div.out-stock {
  color: #777;
  background-color: #e3e3e3;
}
body.page-product .page-product-top .product-info .sub-product-title {
  color: #666;
  line-height: 1.8;
  font-size: 14px;
  margin-top: 10px;
}
body.page-product .page-product-top .product-info .product-param {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  font-size: 14px;
}
@media (min-width: 992px) {
  body.page-product .page-product-top .product-info .product-param {
    margin: 20px 0;
  }
}
body.page-product .page-product-top .product-info .product-param li {
  color: #333;
  line-height: 1.8;
  padding: 2px 0;
}
body.page-product .page-product-top .product-info .product-param li span.title {
  color: #888;
}
body.page-product .page-product-top .product-info .product-variant-box {
  margin-bottom: 20px;
}
body.page-product .page-product-top .product-info .product-variant-box .product-variant {
  margin-bottom: 6px;
}
body.page-product .page-product-top .product-info .product-variant-box .product-variant .variant-title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 6px;
}
body.page-product .page-product-top .product-info .product-variant-box .product-variant .variant-values .variant-value-name {
  display: inline-flex;
  align-items: center;
  margin-right: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  border: 1px solid #ddd;
  padding: 5px 14px;
  border-radius: 2px;
  gap: 8px;
  min-height: 40px;
}
body.page-product .page-product-top .product-info .product-variant-box .product-variant .variant-values .variant-value-name .variant-image-container {
  width: 30px;
  height: 30px;
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
}
body.page-product .page-product-top .product-info .product-variant-box .product-variant .variant-values .variant-value-name .variant-image-container .variant-value-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.page-product .page-product-top .product-info .product-variant-box .product-variant .variant-values .variant-value-name .variant-text {
  font-size: 14px;
  line-height: 1.2;
}
body.page-product .page-product-top .product-info .product-variant-box .product-variant .variant-values .variant-value-name.disabled {
  color: #999;
  border-color: #ddd;
  border-style: dashed;
  text-decoration: line-through;
}
body.page-product .page-product-top .product-info .product-variant-box .product-variant .variant-values .variant-value-name.disabled .variant-image-container {
  opacity: 0.5;
}
body.page-product .page-product-top .product-info .product-variant-box .product-variant .variant-values .variant-value-name.active {
  border-color: #4BC6CA;
  color: #4BC6CA;
  border-style: solid;
  box-shadow: 0 2px 4px #4BC6CA;
}
body.page-product .page-product-top .product-info .product-variant-box .product-variant .variant-values .variant-value-name:hover {
  border-color: #4BC6CA;
  box-shadow: 0 2px 4px #4BC6CA;
}
body.page-product .page-product-top .product-info .product-info-bottom {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  body.page-product .page-product-top .product-info .product-info-bottom {
    height: 50px;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 992px) {
  body.page-product .page-product-top .product-info .product-info-bottom .quantity-wrap {
    height: 40px;
    margin-bottom: 10px;
  }
}
body.page-product .page-product-top .product-info .product-info-bottom .product-info-btns {
  height: inherit;
}
@media (min-width: 992px) {
  body.page-product .page-product-top .product-info .product-info-bottom .product-info-btns {
    margin-left: 20px;
  }
}
@media (max-width: 992px) {
  body.page-product .page-product-top .product-info .product-info-bottom .product-info-btns {
    height: 40px;
    display: flex;
  }
}
body.page-product .page-product-top .product-info .product-info-bottom .product-info-btns .btn {
  height: inherit;
  padding: 0 20px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 0;
}
@media (max-width: 992px) {
  body.page-product .page-product-top .product-info .product-info-bottom .product-info-btns .btn {
    width: 50%;
  }
}
body.page-product .page-product-top .product-info .product-info-bottom .product-info-btns .btn.buy-now {
  background-color: #E6E8EB;
  color: #333;
}
body.page-product .page-product-top .product-info .product-info-bottom .product-info-btns .btn.buy-now:hover {
  background-color: #D9DCE1;
}
body.page-product .page-product-top .product-info .add-wishlist {
  font-weight: bold;
  cursor: pointer;
}
body.page-product .page-product-top .product-info .add-wishlist:hover {
  text-decoration: underline;
}
body.page-product .product-description {
  margin-bottom: 40px;
}
body.page-product .bundle-items-display {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 15px;
  margin: 15px 0;
}
body.page-product .bundle-title {
  color: #495057;
  font-weight: 600;
  margin-bottom: 10px;
}
body.page-product .bundle-products {
  gap: 10px;
}
body.page-product .bundle-product-item {
  background-color: white;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  padding: 8px;
  margin: 2px 0;
}
body.page-product .bundle-product-name {
  font-size: 14px;
  font-weight: 500;
  color: #212529;
  line-height: 1.2;
}
body.page-product .bundle-separator {
  font-weight: bold;
  color: #6c757d;
  font-size: 18px;
}
body.page-product .bundle-total-price {
  color: #dc3545;
  font-size: 16px;
  border-top: 1px solid #dee2e6;
  padding-top: 10px;
}
body.page-product .product-options {
  margin-bottom: 20px;
}
body.page-product .product-options .options-title {
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}
body.page-product .product-options .option-group {
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 15px;
  background-color: #f8f9fa;
  margin-bottom: 15px;
}
body.page-product .product-options .option-group.has-error {
  border-color: #E53E3E !important;
  background-color: #fff5f5 !important;
  box-shadow: 0 0 0 0.2rem rgba(229, 62, 62, 0.25) !important;
}
body.page-product .product-options .option-group.has-error .option-label {
  color: #E53E3E !important;
}
body.page-product .product-options .option-group.has-error .option-select {
  border-color: #E53E3E !important;
}
body.page-product .product-options .option-group.has-error .option-radio-item,
body.page-product .product-options .option-group.has-error .option-checkbox-item {
  background-color: #fff !important;
}
body.page-product .product-options .option-group.has-success {
  border-color: #28a745 !important;
  background-color: #f8fff9 !important;
}
body.page-product .product-options .option-group.has-success .option-label::after {
  content: " ✓";
  color: #28a745;
  font-weight: bold;
  margin-left: 5px;
}
body.page-product .product-options .option-label {
  font-weight: 500;
  color: #495057;
  margin-bottom: 10px;
  display: block;
}
body.page-product .product-options .option-select {
  width: 100%;
}
body.page-product .product-options .option-select option:disabled {
  color: #6c757d;
  background-color: #f8f9fa;
}
body.page-product .product-options .radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
@media (max-width: 576px) {
  body.page-product .product-options .radio-group {
    gap: 6px;
  }
}
body.page-product .product-options .option-radio-item {
  border: 2px solid #dee2e6;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: white;
  min-width: 120px;
  text-align: center;
}
@media (max-width: 576px) {
  body.page-product .product-options .option-radio-item {
    min-width: calc(33.333% - 4px);
    padding: 6px;
    font-size: 11px;
  }
}
body.page-product .product-options .option-radio-item:hover {
  border-color: #4BC6CA;
  box-shadow: 0 2px 4px rgba(233, 30, 99, 0.1);
}
body.page-product .product-options .option-radio-item:has(input:checked) {
  background-color: #e7f3ff;
  border-color: #4BC6CA;
}
body.page-product .product-options .option-radio-item.selected label {
  color: #4BC6CA;
}
body.page-product .product-options .option-radio-item.out-of-stock {
  background-color: #f8f9fa !important;
  border-color: #dee2e6 !important;
  cursor: not-allowed !important;
  opacity: 0.6;
}
body.page-product .product-options .option-radio-item.out-of-stock:hover {
  border-color: #dee2e6 !important;
  box-shadow: none !important;
}
body.page-product .product-options .option-radio-item.out-of-stock label {
  cursor: not-allowed;
  color: #6c757d;
}
body.page-product .product-options .option-radio-item.out-of-stock .out-of-stock-text {
  color: #E53E3E;
  font-weight: 500;
}
body.page-product .product-options .option-radio-item label {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: block;
  width: 100%;
  margin: 0;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.2s ease;
}
body.page-product .product-options .option-radio-item .form-check-input {
  display: none;
}
body.page-product .product-options .checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
@media (max-width: 576px) {
  body.page-product .product-options .checkbox-group {
    gap: 6px;
  }
}
body.page-product .product-options .option-checkbox-item {
  border: 2px solid #dee2e6;
  border-radius: 6px;
  padding: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: white;
  min-width: 120px;
  text-align: center;
}
@media (max-width: 576px) {
  body.page-product .product-options .option-checkbox-item {
    min-width: calc(33.333% - 4px);
    padding: 6px;
    font-size: 11px;
  }
}
body.page-product .product-options .option-checkbox-item:hover {
  border-color: #28a745;
  box-shadow: 0 2px 4px rgba(40, 167, 69, 0.1);
}
body.page-product .product-options .option-checkbox-item:has(input:checked) {
  background-color: #d4edda;
  border-color: #28a745;
}
body.page-product .product-options .option-checkbox-item.selected label {
  color: #1976d2;
}
body.page-product .product-options .option-checkbox-item.out-of-stock {
  background-color: #f8f9fa !important;
  border-color: #dee2e6 !important;
  cursor: not-allowed !important;
  opacity: 0.6;
}
body.page-product .product-options .option-checkbox-item.out-of-stock:hover {
  border-color: #dee2e6 !important;
  box-shadow: none !important;
}
body.page-product .product-options .option-checkbox-item.out-of-stock label {
  cursor: not-allowed;
  color: #6c757d;
}
body.page-product .product-options .option-checkbox-item.out-of-stock .out-of-stock-text {
  color: #E53E3E;
  font-weight: 500;
}
body.page-product .product-options .option-checkbox-item label {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: block;
  width: 100%;
  margin: 0;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.2s ease;
}
body.page-product .product-options .option-checkbox-item .form-check-input {
  display: none;
}
body.page-product .product-options .option-image img {
  width: 120px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
body.page-product .product-options .current-selection-summary {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
body.page-product .product-options .current-selection-summary .card {
  border: none;
  background: transparent;
}
body.page-product .product-options .current-selection-summary .card-title {
  color: #495057;
  font-weight: 600;
  margin-bottom: 15px;
}
body.page-product .product-options .selected-option-item {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  background: white;
  border-radius: 8px;
  margin-bottom: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}
body.page-product .product-options .selected-option-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
body.page-product .product-options .selected-option-item .badge {
  font-size: 0.75em;
  padding: 4px 8px;
  border-radius: 6px;
  background-color: #6c757d !important;
  color: white !important;
}
body.page-product .product-options .selected-option-item .option-value {
  color: #495057;
  font-weight: 500;
}
body.page-product .product-options .total-price-display {
  background: white;
  padding: 12px;
  border-radius: 8px;
  border-left: 4px solid #4BC6CA;
}
body.page-product .product-options .current-total-price {
  font-size: 1.1em !important;
  font-weight: 600 !important;
  padding: 8px 16px !important;
}
body.page-product .product-options .option-description {
  padding: 10px;
  background-color: #f8f9fa;
  border-radius: 4px;
  border-left: 3px solid #4BC6CA;
}
body.page-product .product-options .option-description small {
  color: #6c757d;
  font-style: italic;
}
body.page-product .product-options .price-adjustment {
  font-size: 0.9em;
  color: #28a745;
  font-weight: 500;
}
body.page-product .product-options .out-of-stock-text {
  color: #E53E3E;
  font-size: 0.8em;
  font-weight: 500;
  margin-left: 5px;
}
body.page-product .product-options .option-error-message {
  color: #E53E3E;
  font-size: 0.875em;
  margin-top: 8px;
  display: flex;
  align-items: center;
  animation: fadeIn 0.3s ease-in;
}
body.page-product .product-options .option-error-message i {
  margin-right: 6px;
  font-size: 1em;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.page-cart .products-table .product-item {
  display: flex;
  align-items: flex-start;
}
body.page-cart .products-table .product-name {
  color: #222;
}
body.page-cart .products-table .product-name a {
  color: inherit;
}
body.page-cart .products-table .product-name a:hover {
  text-decoration: underline;
  color: #4BC6CA;
}
body.page-cart .products-table .td-image {
  width: 100px;
  padding: 0;
}
@media (min-width: 768px) {
  body.page-cart .products-table .td-image {
    width: 70px;
  }
}
body.page-cart .products-table .product-image {
  width: 90px;
  height: 90px;
}
@media (min-width: 768px) {
  body.page-cart .products-table .product-image {
    margin-right: 10px;
    width: 50px;
    height: 50px;
  }
}
body.page-cart .products-table .product-image img {
  max-height: 100%;
}
body.page-cart .products-table .quantity-wrap {
  height: 27px;
  width: 90px;
}
body.page-cart .products-table .quantity-wrap > div {
  font-size: 14px;
}
@media (min-width: 768px) {
  body.page-cart .products-table .quantity-wrap {
    height: 40px;
    width: 120px;
  }
  body.page-cart .products-table .quantity-wrap > div {
    font-size: 18px;
  }
}
body.page-cart .products-table .quantity-wrap input {
  font-size: 14px;
}
@media (max-width: 768px) {
  body.page-cart .products-table tr {
    position: relative;
  }
  body.page-cart .products-table thead, body.page-cart .products-table .td-price, body.page-cart .products-table .td-subtotal {
    display: none;
  }
  body.page-cart .products-table .td-product-check {
    padding-left: 0;
  }
  body.page-cart .products-table .td-product-info {
    width: 100%;
    padding: 20px 0 20px 10px;
  }
  body.page-cart .products-table .td-delete {
    padding-right: 0;
  }
}
@media (min-width: 768px) {
  body.page-cart .products-table .mb-price {
    display: none;
  }
}
body.page-cart .cart-data {
  background-color: #F8F9FA;
  padding: 26px;
}
body.page-cart .cart-data .title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
body.page-cart .cart-data .cart-data-list {
  list-style: none;
  padding: 0;
}
body.page-cart .cart-data .cart-data-list > li {
  border-bottom: 1px solid #eee;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
}
body.page-cart .cart-data .cart-data-list > li:last-child {
  border-bottom: none;
}
body.page-cart .cart-data .cart-data-list > li:last-child > span:last-child {
  font-weight: bold;
  color: #E53E3E;
  font-size: 24px;
}

body.page-checkout .layer-login {
  color: red;
}
body.page-checkout .breadcrumb-wrap {
  margin-bottom: 0;
}
body.page-checkout footer {
  margin-top: 0;
}
@media (min-width: 768px) {
  body.page-checkout .checkout-container {
    padding: 0;
    max-width: 100%;
  }
  body.page-checkout .checkout-container > .row {
    margin: 0;
  }
  body.page-checkout .checkout-container > .row > .col-md-5, body.page-checkout .checkout-container > .row .col-md-7 {
    padding: 0;
  }
}
body.page-checkout .title-wrap {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body.page-checkout .title-wrap > .title {
  font-size: 15px;
  font-weight: bold;
}
@media (min-width: 768px) {
  body.page-checkout .title-wrap > .title {
    font-size: 18px;
  }
}
body.page-checkout .checkout-info {
  padding-top: 20px;
}
@media (min-width: 768px) {
  body.page-checkout .checkout-info {
    max-width: 720px;
    margin-left: auto;
    padding: 40px;
  }
}
body.page-checkout .checkout-info .checkout-item {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  body.page-checkout .checkout-info .checkout-item {
    margin-bottom: 40px;
  }
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item {
  border: 1px solid #e3e3e3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  margin-top: -1px;
  cursor: pointer;
  position: relative;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item:first-child {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item:first-child::before {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item:last-child {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item:last-child::before {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item::before {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  border: 1px solid #8446e0;
  inset-block-start: -1px;
  bottom: -1px;
  left: -1px;
  right: -1px;
  top: -1px;
  inset: -1px;
  display: none;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item.active {
  background-color: #fbefff;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item.active:before {
  display: block;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item.active .left i {
  color: #8446e0;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item.active .left i::before {
  content: "\f517";
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item .left {
  display: flex;
  align-items: center;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item .left i {
  font-size: 18px;
  color: #888;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item .left .select-title {
  font-size: 14px;
  margin-left: 14px;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item .icon {
  max-width: 200px;
  height: 34px;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item .icon img {
  max-height: 100%;
}
@media (min-width: 768px) {
  body.page-checkout .checkout-data {
    background-color: #F8F9FA;
    padding: 0 40px;
    border-left: 1px solid #e9edf1;
    height: 100%;
  }
}
@media (max-width: 768px) {
  body.page-checkout .checkout-data {
    margin-bottom: 40px;
  }
}
@media (min-width: 768px) {
  body.page-checkout .checkout-data .checkout-data-content {
    padding: 40px 0;
    max-width: 430px;
  }
}
body.page-checkout .checkout-data .checkout-data-content .products-table-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e3e3e3;
  font-weight: bold;
  font-size: 14px;
  padding-bottom: 10px;
}
body.page-checkout .checkout-data .checkout-data-content .products-table-wrap {
  margin-top: 20px;
  margin-bottom: 20px;
}
body.page-checkout .checkout-data .checkout-data-content .products-table-wrap .products-table-list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
body.page-checkout .checkout-data .checkout-data-content .products-table td {
  padding-left: 0;
  padding-right: 0;
}
body.page-checkout .checkout-data .checkout-data-content .products-table .product-item {
  display: flex;
  align-items: flex-start;
}
body.page-checkout .checkout-data .checkout-data-content .products-table .product-item .product-image {
  width: 50px;
  height: 50px;
  margin-right: 14px;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  position: relative;
}
body.page-checkout .checkout-data .checkout-data-content .products-table .product-item .product-image .icon-quantity {
  position: absolute;
  top: -5px;
  right: -10px;
  background-color: #4BC6CA;
  color: #fff;
  font-size: 9px;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.page-checkout .checkout-data .checkout-data-content .products-table .product-item .product-image img {
  max-height: 100%;
}
body.page-checkout .checkout-data .cart-data-list {
  list-style: none;
  padding: 0;
  border-top: 1px solid #eee;
}
body.page-checkout .checkout-data .cart-data-list > li {
  border-bottom: 1px solid #eee;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
}
body.page-checkout .checkout-data .cart-data-list > li:last-child {
  border-bottom: none;
}
body.page-checkout .checkout-data .cart-data-list > li:last-child > span:last-child {
  font-weight: bold;
  color: #E53E3E;
  font-size: 24px;
}

body.page-order .account-card-title {
  margin-bottom: 16px;
}
body.page-order .tabs-plus {
  margin-bottom: 16px;
}
body.page-order .order_return {
  padding-left: 20px !important;
}
body.page-order .table-responsive {
  margin-top: 50px;
}

body.page-order-info .products-table td, body.page-order-info .products-table th {
  padding-left: 0;
  padding-right: 0;
}
body.page-order-info .products-table .product-item {
  display: flex;
  align-items: center;
}
body.page-order-info .products-table .product-item .product-image {
  width: 50px;
  height: 50px;
  margin-right: 14px;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  position: relative;
}
body.page-order-info .products-table .product-item .product-image .icon-quantity {
  position: absolute;
  top: -5px;
  right: -10px;
  background-color: #4BC6CA;
  color: #fff;
  font-size: 9px;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.page-order-info .products-table .product-item .product-image img {
  max-height: 100%;
}

body.page-addresses .address-card {
  border: 1px solid #e9ecef;
  border-radius: 4px;
  margin-bottom: 20px;
}
body.page-addresses .address-card .address-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  border-bottom: 1px solid #e9ecef;
}
body.page-addresses .address-card .address-card-header .address-card-title {
  margin: 0;
}
body.page-addresses .address-card .address-card-header .address-card-actions {
  display: flex;
  align-items: center;
}
body.page-addresses .address-card .address-card-header .address-card-actions a {
  margin-left: 10px;
}
body.page-addresses .address-card .address-card-body {
  padding: 15px;
  word-break: break-all;
}
body.page-addresses .address-card .address-card-body p {
  margin: 0;
}

body.page-brands .brand-group {
  width: 100%;
}
body.page-brands .brand-group .btn {
  border: 1px solid #e8e8e8;
}
body.page-brands .brand-group .btn:hover {
  background-color: #f4f4f4;
}
body.page-brands .brands-wrap {
  margin-top: 30px;
}
body.page-brands .brands-wrap .item ul {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
body.page-brands .brands-wrap .item ul li {
  padding: 0 10px;
  margin-bottom: 20px;
}
body.page-brands .brands-wrap .item ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body.page-brands .brands-wrap .item ul li a .img {
  width: 99px;
  border: 1px solid #e8e8e8;
  margin-bottom: 10px;
}

body.page-checkout-success .checkout-success-box {
  border: 1px solid #ECF0F4;
  padding: 20px 10px;
  max-width: 730px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  body.page-checkout-success .checkout-success-box {
    padding: 30px;
  }
}
body.page-checkout-success .checkout-success-box .order-success-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
body.page-checkout-success .checkout-success-box .order-success-icon img {
  max-width: 170px;
}
@media (min-width: 768px) {
  body.page-checkout-success .checkout-success-box .order-success-icon img {
    max-width: 200px;
  }
}
body.page-checkout-success .checkout-success-box .checkout-success-table th, body.page-checkout-success .checkout-success-box .checkout-success-table td {
  padding: 10px 0;
}
body.page-checkout-success .checkout-success-box .checkout-success-title {
  margin-bottom: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  body.page-checkout-success .checkout-success-box .checkout-success-title {
    margin-bottom: 30px;
  }
}
body.page-checkout-success .checkout-success-box .checkout-success-title span {
  font-size: 18px;
  font-weight: bold;
}
@media (min-width: 768px) {
  body.page-checkout-success .checkout-success-box .checkout-success-title span {
    font-size: 30px;
  }
}

.page-wallet .transaction-card-box,
.page-wallet .withdrawal-card-box,
.page-wallet .wallet-card-box {
  background: #fff;
  border: 1px solid #e8eef3;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}
.page-wallet .transaction-card-title,
.page-wallet .withdrawal-card-title,
.page-wallet .wallet-card-title {
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e8eef3;
  padding-top: 5px;
  padding-bottom: 15px;
  min-height: 52px;
}
.page-wallet .transaction-card-title .fw-bold,
.page-wallet .withdrawal-card-title .fw-bold,
.page-wallet .wallet-card-title .fw-bold {
  font-size: 1.1rem;
  font-weight: 600;
}
.page-wallet .transaction-table-box,
.page-wallet .withdrawal-table-box,
.page-wallet .wallet-table-box {
  margin-top: 15px;
}
.page-wallet .transaction-table-box th,
.page-wallet .transaction-table-box td,
.page-wallet .withdrawal-table-box th,
.page-wallet .withdrawal-table-box td,
.page-wallet .wallet-table-box th,
.page-wallet .wallet-table-box td {
  padding: 12px 8px;
  font-size: 0.9rem;
}
.page-wallet .transaction-table-box th,
.page-wallet .withdrawal-table-box th,
.page-wallet .wallet-table-box th {
  background-color: #f8f9fa;
  font-weight: 600;
}
.page-wallet .wallet-balance-item,
.page-wallet .wallet-stats-item {
  text-align: center;
  padding: 15px;
}
.page-wallet .wallet-balance-item .value,
.page-wallet .wallet-stats-item .value {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 5px;
}
.page-wallet .wallet-balance-item .title,
.page-wallet .wallet-stats-item .title {
  font-size: 0.9rem;
}
.page-wallet .wallet-actions .btn.disabled {
  pointer-events: none;
}
.page-wallet .withdrawal-create-box {
  background: #fff;
  border: 1px solid #e8eef3;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}
.page-wallet .wallet-balance-overview {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  padding: 0;
  margin-bottom: 30px;
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
  overflow: hidden;
}
.page-wallet .wallet-balance-overview .balance-header {
  background: rgba(255, 255, 255, 0.1);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.page-wallet .wallet-balance-overview .balance-header i {
  font-size: 1.2rem;
  margin-right: 10px;
  opacity: 0.9;
}
.page-wallet .wallet-balance-overview .balance-header span {
  font-weight: 600;
  font-size: 1rem;
}
.page-wallet .wallet-balance-overview .balance-content {
  padding: 24px 20px 20px;
}
.page-wallet .wallet-balance-overview .balance-content .balance-main {
  text-align: center;
  margin-bottom: 16px;
}
.page-wallet .wallet-balance-overview .balance-content .balance-main .available-balance .amount {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.page-wallet .wallet-balance-overview .balance-content .balance-main .available-balance .label {
  font-size: 0.95rem;
  opacity: 0.9;
  font-weight: 500;
}
.page-wallet .wallet-balance-overview .balance-content .balance-note {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.85rem;
  opacity: 0.9;
}
.page-wallet .wallet-balance-overview .balance-content .balance-note i {
  margin-right: 8px;
  font-size: 0.9rem;
}
.page-wallet .balance-info-box {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  padding: 15px;
}
.page-wallet .balance-item {
  text-align: center;
}
.page-wallet .balance-item .value {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 5px;
}
.page-wallet .balance-item .label {
  font-size: 0.9rem;
  color: #6c757d;
}
.page-wallet .withdrawal-form .required::after {
  content: " *";
  color: #dc3545;
}
.page-wallet .form-actions {
  padding-top: 20px;
  border-top: 1px solid #e8eef3;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .page-wallet .transaction-card-box,
  .page-wallet .withdrawal-card-box,
  .page-wallet .wallet-card-box {
    padding: 15px;
  }
  .page-wallet .transaction-table-box th,
  .page-wallet .transaction-table-box td,
  .page-wallet .withdrawal-table-box th,
  .page-wallet .withdrawal-table-box td,
  .page-wallet .wallet-table-box th,
  .page-wallet .wallet-table-box td {
    padding: 8px 5px;
    font-size: 0.8rem;
  }
  .page-wallet .wallet-balance-item,
  .page-wallet .wallet-stats-item {
    padding: 10px 5px;
  }
  .page-wallet .wallet-balance-item .value,
  .page-wallet .wallet-stats-item .value {
    font-size: 1.2rem;
  }
  .page-wallet .withdrawal-create-box {
    padding: 15px;
  }
  .page-wallet .balance-item .value {
    font-size: 1.2rem;
  }
  .page-wallet .wallet-balance-overview {
    margin-bottom: 20px;
  }
  .page-wallet .wallet-balance-overview .balance-header {
    padding: 12px 16px;
  }
  .page-wallet .wallet-balance-overview .balance-header i {
    font-size: 1.1rem;
  }
  .page-wallet .wallet-balance-overview .balance-header span {
    font-size: 0.9rem;
  }
  .page-wallet .wallet-balance-overview .balance-content {
    padding: 20px 16px 16px;
  }
  .page-wallet .wallet-balance-overview .balance-content .balance-main {
    margin-bottom: 12px;
  }
  .page-wallet .wallet-balance-overview .balance-content .balance-main .available-balance .amount {
    font-size: 2rem;
  }
  .page-wallet .wallet-balance-overview .balance-content .balance-main .available-balance .label {
    font-size: 0.9rem;
  }
  .page-wallet .wallet-balance-overview .balance-content .balance-note {
    padding: 10px 12px;
    font-size: 0.8rem;
  }
  .page-wallet .wallet-balance-overview .balance-content .balance-note i {
    font-size: 0.85rem;
  }
}

/*
 * Copyright (c) Since 2024 Dovecure - All Rights Reserved
 *
 * @link       http://dovecure.com/
 * @author     dovecure <xj@qq.com>
 * @license    https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
 *
 * Front - 我的服务案件详情页样式
 */
.service-case-detail-box {
  background: transparent;
  border-radius: 12px;
  padding: 0 0 24px;
}

/* ============ HERO ============ */
.scd-hero {
  background: linear-gradient(120deg, #1F4FA8 0%, #2563eb 60%, #4f7df0 100%);
  color: #fff;
  border-radius: 16px;
  padding: 32px 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(31, 79, 168, 0.12);
}
.scd-hero::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 240px;
  height: 240px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}
.scd-hero::after {
  content: "";
  position: absolute;
  right: 40px;
  bottom: -80px;
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}
.scd-hero .scd-hero-actions {
  position: absolute;
  right: 32px;
  top: 32px;
  display: flex;
  gap: 8px;
  z-index: 1;
}
.scd-hero .scd-hero-actions .btn {
  border-radius: 999px;
  font-size: 13px;
}
.scd-hero .scd-hero-row {
  display: flex;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.scd-hero .scd-hero-thumb {
  width: 96px;
  height: 96px;
  flex: 0 0 96px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  overflow: hidden;
}
.scd-hero .scd-hero-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.scd-hero .scd-hero-main {
  flex: 1;
  min-width: 0;
}
.scd-hero .scd-hero-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.scd-hero .scd-case-no {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}
.scd-hero .scd-case-no .no {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.scd-hero .scd-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: #1F4FA8;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}
.scd-hero .scd-status-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1F4FA8;
}
.scd-hero .scd-status-badge.completed {
  background: #ECFDF5;
  color: #047857;
}
.scd-hero .scd-status-badge.completed .dot {
  background: #10B981;
}
.scd-hero .scd-status-badge.cancelled {
  background: #FEE2E2;
  color: #B91C1C;
}
.scd-hero .scd-status-badge.cancelled .dot {
  background: #EF4444;
}
.scd-hero .scd-hero-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #fff;
}
.scd-hero .scd-hero-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 18px;
}
.scd-hero .scd-hero-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.scd-hero .scd-meta-item .label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}
.scd-hero .scd-meta-item .value {
  font-size: 15px;
  font-weight: 600;
  margin-top: 2px;
  color: #fff;
}
.scd-hero .scd-meta-item .value a {
  color: #fff;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .scd-hero .scd-hero-row {
    flex-direction: column;
  }
  .scd-hero .scd-hero-meta {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============ PROGRESS OVERVIEW ============ */
.scd-progress {
  background: #fff;
  border-radius: 16px;
  padding: 24px 32px;
  margin-top: 16px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}
.scd-progress .scd-step-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.scd-progress .scd-step {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.scd-progress .scd-step .ico {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EEF2F7;
  color: #94A3B8;
  font-size: 16px;
  border: 2px solid #EEF2F7;
  flex: 0 0 36px;
}
.scd-progress .scd-step .txt {
  font-size: 13px;
  color: #475569;
  font-weight: 500;
}
.scd-progress .scd-step.active .ico {
  background: #1F4FA8;
  color: #fff;
  border-color: #1F4FA8;
  box-shadow: 0 0 0 4px rgba(31, 79, 168, 0.12);
}
.scd-progress .scd-step.active .txt {
  color: #1F4FA8;
  font-weight: 700;
}
.scd-progress .scd-step.done .ico {
  background: #10B981;
  color: #fff;
  border-color: #10B981;
}
.scd-progress .scd-step.done .txt {
  color: #10B981;
}
.scd-progress .scd-connector {
  flex: 0 0 32px;
  height: 2px;
  background: #EEF2F7;
  border-radius: 2px;
}
.scd-progress .scd-connector.done {
  background: #10B981;
}
.scd-progress .scd-bar {
  margin-top: 18px;
}
.scd-progress .scd-bar .scd-track {
  height: 8px;
  background: #EEF2F7;
  border-radius: 999px;
  overflow: hidden;
}
.scd-progress .scd-bar .scd-fill {
  height: 100%;
  background: linear-gradient(90deg, #1F4FA8, #4f7df0);
  border-radius: 999px;
}
.scd-progress .scd-bar .scd-legend {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 12px;
  color: #64748B;
}

/* ============ METRICS ============ */
.scd-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .scd-metrics {
    grid-template-columns: 1fr 1fr;
  }
}

.scd-metric {
  background: #fff;
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
  border: 1px solid #EEF2F7;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  cursor: pointer;
  transition: all 0.2s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.scd-metric:hover {
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
  border-color: #CBD5E1;
  transform: translateY(-1px);
}
.scd-metric.active {
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.12);
  transform: translateY(-1px);
}
.scd-metric.active.total {
  border-color: #1F4FA8;
  background: linear-gradient(135deg, #EFF6FF, #fff);
}
.scd-metric.active.pending {
  border-color: #B45309;
  background: linear-gradient(135deg, #FFFBEB, #fff);
}
.scd-metric.active.progress {
  border-color: #6D28D9;
  background: linear-gradient(135deg, #F5F3FF, #fff);
}
.scd-metric.active.done {
  border-color: #10B981;
  background: linear-gradient(135deg, #ECFDF5, #fff);
}
.scd-metric .ico {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex: 0 0 44px;
}
.scd-metric .num {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: #0F172A;
}
.scd-metric .lbl {
  font-size: 12px;
  color: #64748B;
  margin-top: 4px;
  line-height: 1.2;
}
.scd-metric.total .ico {
  background: #EFF6FF;
  color: #1F4FA8;
}
.scd-metric.pending .ico {
  background: #FFFBEB;
  color: #B45309;
}
.scd-metric.progress .ico {
  background: #F5F3FF;
  color: #6D28D9;
}
.scd-metric.done .ico {
  background: #ECFDF5;
  color: #047857;
}

/* ============ TABS ============ */
.scd-tabs {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: #F1F5F9;
  border-radius: 12px;
  margin-top: 16px;
}

.scd-tab {
  flex: 1;
  text-align: center;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s;
}
.scd-tab .num {
  display: inline-block;
  margin-left: 6px;
  padding: 0 6px;
  font-size: 11px;
  background: #E2E8F0;
  color: #475569;
  border-radius: 999px;
}
.scd-tab.active {
  background: #fff;
  color: #1F4FA8;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.08);
  font-weight: 600;
}
.scd-tab.active .num {
  background: #DBEAFE;
  color: #1F4FA8;
}

.scd-tab-pane {
  display: none;
}

.scd-tab-pane.active {
  display: block;
}

/* 通用 card / 容器 */
.scd-card {
  background: #fff;
  border-radius: 16px;
  margin-top: 16px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.scd-card .pane-inner {
  padding: 24px 32px;
}

.scd-section-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.scd-section-head .ico {
  width: 4px;
  height: 16px;
  background: #1F4FA8;
  border-radius: 2px;
}
.scd-section-head .title {
  font-size: 16px;
  font-weight: 700;
  color: #0F172A;
}
.scd-section-head .sub {
  font-size: 12px;
  color: #94A3B8;
  margin-left: auto;
}

.scd-charge-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.scd-charge-table th {
  font-size: 12px;
  color: #94A3B8;
  font-weight: 500;
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid #E2E8F0;
}
.scd-charge-table td {
  padding: 14px 12px;
  border-bottom: 1px solid #F1F5F9;
  font-size: 14px;
  color: #0F172A;
}
.scd-charge-table tr:last-child td {
  border-bottom: none;
}
.scd-charge-table .amount {
  color: #1F4FA8;
  font-weight: 600;
}

.scd-pbadge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}
.scd-pbadge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.scd-pbadge.pb-pending {
  background: #FFFBEB;
  color: #B45309;
}
.scd-pbadge.pb-pending .dot {
  background: #B45309;
}
.scd-pbadge.pb-progress {
  background: #F5F3FF;
  color: #6D28D9;
}
.scd-pbadge.pb-progress .dot {
  background: #6D28D9;
}
.scd-pbadge.pb-ready {
  background: #EFF6FF;
  color: #1F4FA8;
}
.scd-pbadge.pb-ready .dot {
  background: #1F4FA8;
}
.scd-pbadge.pb-done {
  background: #ECFDF5;
  color: #047857;
}
.scd-pbadge.pb-done .dot {
  background: #10B981;
}
.scd-pbadge.pb-cancel {
  background: #FEE2E2;
  color: #B91C1C;
}
.scd-pbadge.pb-cancel .dot {
  background: #EF4444;
}

/* ============ ORDER LIST ============ */
.scd-order-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.scd-order-card {
  border: 1px solid #EEF2F7;
  border-radius: 12px;
  padding: 20px;
  background: #fff;
  transition: all 0.2s;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 20px;
}
.scd-order-card:hover {
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  border-color: #CBD5E1;
}
@media (max-width: 992px) {
  .scd-order-card {
    grid-template-columns: 1fr;
  }
}

.scd-order-left {
  min-width: 0;
}

.scd-order-right {
  border-left: 1px dashed #E2E8F0;
  padding: 4px 0 4px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (max-width: 992px) {
  .scd-order-right {
    border-left: none;
    padding: 16px 0 0;
    border-top: 1px dashed #E2E8F0;
  }
}

.scd-order-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}
.scd-order-head .name {
  font-size: 17px;
  font-weight: 700;
  color: #0F172A;
}
.scd-order-head .no {
  font-size: 12px;
  color: #94A3B8;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  margin-top: 2px;
}

.scd-order-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
  margin: 12px 0;
  padding: 12px 0;
  border-top: 1px dashed #E2E8F0;
  border-bottom: 1px dashed #E2E8F0;
}
@media (max-width: 576px) {
  .scd-order-info-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.scd-order-info-grid .lbl {
  font-size: 11px;
  color: #94A3B8;
}
.scd-order-info-grid .val {
  font-size: 13px;
  color: #0F172A;
  font-weight: 500;
}
.scd-order-info-grid .full-row {
  grid-column: 1/-1;
}

.scd-next-action {
  margin-top: 14px;
  padding: 12px 14px;
  background: linear-gradient(135deg, #1F4FA8 0%, #2563eb 100%);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  text-decoration: none;
}
.scd-next-action .ico {
  font-size: 18px;
}
.scd-next-action .txt {
  flex: 1;
}
.scd-next-action .arrow {
  font-size: 18px;
}
.scd-next-action.scd-next-progress {
  background: linear-gradient(135deg, #6D28D9, #8B5CF6);
}
.scd-next-action.scd-next-ready {
  background: linear-gradient(135deg, #1F4FA8, #3B82F6);
}
.scd-next-action.scd-next-done {
  background: linear-gradient(135deg, #10B981, #34D399);
}
.scd-next-action.scd-next-cancel {
  background: linear-gradient(135deg, #EF4444, #F87171);
}

.scd-staff-block {
  background: #F8FAFC;
  border-radius: 10px;
  padding: 14px;
}
.scd-staff-block .scd-staff-head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.scd-staff-block .scd-staff-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1F4FA8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  flex: 0 0 44px;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.scd-staff-block .scd-staff-avatar.placeholder {
  background: #1F4FA8;
}
.scd-staff-block .name {
  font-size: 14px;
  font-weight: 700;
}
.scd-staff-block .role {
  font-size: 12px;
  color: #64748B;
  margin-top: 2px;
}
.scd-staff-block .scd-staff-detail {
  margin-top: 10px;
  font-size: 12px;
  color: #475569;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.scd-staff-block .scd-staff-detail .scd-staff-row {
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.4;
}
.scd-staff-block .scd-staff-detail .scd-staff-row i {
  color: #1F4FA8;
  font-size: 14px;
  width: 14px;
  min-width: 14px;
  max-width: 14px;
  text-align: center;
  display: inline-block;
  line-height: 1;
}
.scd-staff-block .scd-staff-detail .scd-staff-row span {
  flex: 1;
  min-width: 0;
  word-break: break-all;
  line-height: 1.4;
}
.scd-staff-block.scd-staff-empty {
  background: #FFF7ED;
  color: #B45309;
  font-size: 12px;
  padding: 16px 14px;
  text-align: center;
}
.scd-staff-block.scd-staff-empty i {
  font-size: 24px;
  display: block;
  margin-bottom: 6px;
}

.scd-contact-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.scd-contact-block .btn {
  font-size: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.scd-contact-block .btn i {
  font-size: 14px;
}
.scd-contact-block .btn-primary {
  background: #1F4FA8;
  border-color: #1F4FA8;
}
.scd-contact-block .btn-outline-secondary {
  border-color: #E2E8F0;
  color: #475569;
}
.scd-contact-block .btn-outline-secondary:hover {
  border-color: #1F4FA8;
  color: #1F4FA8;
}

.scd-order-detail-link {
  display: block;
  text-align: center;
  padding: 8px 12px;
  margin: 0;
  font-size: 13px;
  color: #1F4FA8;
  text-decoration: none;
  font-weight: 500;
  border-radius: 8px;
  background: #F1F5F9;
}
.scd-order-detail-link:hover {
  color: #1E40AF;
  background: #E2E8F0;
}

/* 单服务评价 */
.scd-order-review {
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px dashed #E2E8F0;
  border-radius: 8px;
  background: #FAFAFA;
}
.scd-order-review .head {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.scd-order-review .scd-stars {
  color: #F59E0B;
  font-size: 14px;
  display: inline-flex;
  gap: 2px;
}
.scd-order-review .scd-stars i {
  color: #CBD5E1;
}
.scd-order-review .scd-stars i.active {
  color: #F59E0B;
}
.scd-order-review .lbl {
  font-size: 12px;
  color: #475569;
}
.scd-order-review .time {
  font-size: 12px;
  color: #94A3B8;
  margin-left: auto;
}
.scd-order-review .content {
  font-size: 13px;
  color: #475569;
  margin-top: 6px;
}
.scd-order-review .tags {
  margin-top: 8px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.scd-order-review .scd-tag {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 12px;
  color: #475569;
}

.scd-order-review-form {
  margin-top: 12px;
}

.scd-review-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
@media (max-width: 768px) {
  .scd-review-form {
    grid-template-columns: 1fr 1fr;
  }
}
.scd-review-form .full-row {
  grid-column: 1/-1;
}

/* 客户资料 / 确认表单（卡片内） */
.scd-customer-form {
  margin-top: 12px;
}

.scd-customer-form-box {
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 14px;
  background: #fff;
}
.scd-customer-form-box .scd-customer-form-title {
  font-size: 14px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 12px;
}
.scd-customer-form-box .scd-customer-form-title i {
  color: #1F4FA8;
  margin-right: 6px;
}
.scd-customer-form-box .scd-customer-form-submit {
  margin-top: 14px;
  text-align: right;
}

.scd-form-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.scd-form-field {
  min-width: 0;
}
.scd-form-field.full-row {
  width: 100%;
}

/* 客户资料弹窗 */
.scd-customer-info-modal .modal-content {
  border: none;
  border-radius: 16px;
  overflow: hidden;
}
.scd-customer-info-modal .modal-header {
  background: linear-gradient(120deg, #1F4FA8 0%, #2563eb 100%);
  color: #fff;
  border-bottom: none;
  padding: 20px 24px;
}
.scd-customer-info-modal .modal-header .modal-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.scd-customer-info-modal .modal-header .modal-title i {
  color: rgba(255, 255, 255, 0.85);
}
.scd-customer-info-modal .modal-header .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}
.scd-customer-info-modal .modal-body {
  padding: 24px;
}
.scd-customer-info-modal .modal-footer {
  border-top: 1px solid #F1F5F9;
  padding: 16px 24px;
}
.scd-customer-info-modal .scd-form-fields {
  gap: 16px;
}

/* ============ ADDON ============ */
.scd-addon {
  background: #fff;
  border-radius: 16px;
  margin-top: 16px;
  padding: 24px 32px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}
.scd-addon .scd-addon-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.scd-addon .scd-addon-head .ico {
  width: 4px;
  height: 16px;
  background: #1F4FA8;
  border-radius: 2px;
}
.scd-addon .scd-addon-head .title {
  font-size: 16px;
  font-weight: 700;
  color: #0F172A;
}
.scd-addon .scd-addon-head .sub {
  font-size: 12px;
  color: #94A3B8;
  margin-left: 6px;
}
.scd-addon .scd-addon-form {
  display: grid;
  grid-template-columns: 2fr 1fr auto;
  gap: 16px;
  align-items: end;
}
@media (max-width: 768px) {
  .scd-addon .scd-addon-form {
    grid-template-columns: 1fr;
  }
}
.scd-addon .scd-addon-form label {
  font-size: 12px;
  color: #64748B;
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
}
.scd-addon .scd-addon-form select, .scd-addon .scd-addon-form input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  font-size: 14px;
}
.scd-addon .scd-addon-form .addon-submit .btn {
  padding: 10px 24px;
  border-radius: 8px;
}

/* ============ 案件整体评价 ============ */
.scd-case-review-display {
  background: #F8FAFC;
  border-radius: 12px;
  padding: 18px 20px;
}
.scd-case-review-display .scd-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.scd-case-review-display .scd-stars {
  color: #F59E0B;
  font-size: 18px;
  display: inline-flex;
  gap: 2px;
}
.scd-case-review-display .scd-stars i {
  color: #CBD5E1;
}
.scd-case-review-display .scd-stars i.active {
  color: #F59E0B;
}
.scd-case-review-display .lbl {
  font-size: 13px;
  color: #475569;
}
.scd-case-review-display .scd-review-content {
  margin-top: 10px;
  font-size: 14px;
  color: #0F172A;
}
.scd-case-review-display .scd-review-ratings {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media (max-width: 768px) {
  .scd-case-review-display .scd-review-ratings {
    grid-template-columns: 1fr 1fr;
  }
}
.scd-case-review-display .scd-review-ratings .scd-rating-item {
  display: flex;
  gap: 8px;
  font-size: 13px;
}
.scd-case-review-display .scd-review-ratings .scd-rating-item .lbl {
  color: #94A3B8;
}
.scd-case-review-display .scd-review-ratings .scd-rating-item .val {
  color: #0F172A;
  font-weight: 600;
}

/*
 * Copyright (c) Since 2024 Dovecure - All Rights Reserved
 *
 * @link       http://dovecure.com/
 * @author     dovecure <xj@qq.com>
 * @license    https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
 *
 * Front - 服务订单详情页样式
 */
.service-order-detail-box {
  background: transparent;
  border-radius: 12px;
  padding: 0 0 24px;
}

/* ============ HERO ============ */
.sod-hero {
  background: linear-gradient(120deg, #1F4FA8 0%, #2563eb 60%, #4f7df0 100%);
  color: #fff;
  border-radius: 16px;
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(31, 79, 168, 0.12);
}
.sod-hero::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 240px;
  height: 240px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}
.sod-hero .sod-hero-back {
  position: absolute;
  right: 28px;
  top: 28px;
  z-index: 1;
}
.sod-hero .sod-hero-back .btn {
  border-radius: 999px;
  font-size: 13px;
}
.sod-hero .sod-hero-row {
  display: flex;
  gap: 20px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.sod-hero .sod-hero-thumb {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.sod-hero .sod-hero-info {
  flex: 1;
  min-width: 0;
}
.sod-hero .sod-hero-crumb {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}
.sod-hero .sod-hero-crumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.sod-hero .sod-hero-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 4px 0 6px;
}
.sod-hero .sod-hero-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.sod-hero .sod-hero-meta {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 18px;
}
@media (max-width: 992px) {
  .sod-hero .sod-hero-meta {
    grid-template-columns: repeat(2, 1fr);
  }
}
.sod-hero .sod-meta-item .label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
}
.sod-hero .sod-meta-item .value {
  font-size: 14px;
  font-weight: 600;
  margin-top: 2px;
  color: #fff;
}
@media (max-width: 768px) {
  .sod-hero .sod-hero-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============ NEXT BAR ============ */
.sod-next-bar {
  background: linear-gradient(135deg, #1F4FA8 0%, #2563eb 100%);
  color: #fff;
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sod-next-bar .ico {
  font-size: 22px;
}
.sod-next-bar .txt {
  flex: 1;
  font-size: 14px;
}
.sod-next-bar.sod-next-progress {
  background: linear-gradient(135deg, #6D28D9, #8B5CF6);
}
.sod-next-bar.sod-next-ready {
  background: linear-gradient(135deg, #1F4FA8, #3B82F6);
}
.sod-next-bar.sod-next-done {
  background: linear-gradient(135deg, #10B981, #34D399);
}
.sod-next-bar.sod-next-cancel {
  background: linear-gradient(135deg, #EF4444, #F87171);
}

/* ============ TWO COL LAYOUT ============ */
.sod-row-2col {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 16px;
  margin-top: 16px;
}
@media (max-width: 992px) {
  .sod-row-2col {
    grid-template-columns: 1fr;
  }
}

.sod-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.sod-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ============ CARD ============ */
.sod-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
  overflow: hidden;
}

.sod-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  border-bottom: 1px solid #F1F5F9;
}
.sod-card-head .ico {
  width: 4px;
  height: 16px;
  background: #1F4FA8;
  border-radius: 2px;
}
.sod-card-head .title {
  font-size: 16px;
  font-weight: 700;
  color: #0F172A;
}
.sod-card-head .sub {
  font-size: 12px;
  color: #94A3B8;
  margin-left: auto;
}

.sod-card-body {
  padding: 20px 28px;
}

/* ============ STAFF BLOCK ============ */
.sod-staff-block {
  display: flex;
  gap: 18px;
  align-items: center;
  background: #F8FAFC;
  border-radius: 12px;
  padding: 18px 20px;
}
.sod-staff-block .sod-staff-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #1F4FA8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 24px;
  flex: 0 0 64px;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.sod-staff-block .info {
  flex: 1;
}
.sod-staff-block .name {
  font-size: 16px;
  font-weight: 700;
}
.sod-staff-block .role {
  font-size: 13px;
  color: #64748B;
  margin-top: 2px;
}
.sod-staff-block .meta {
  font-size: 12px;
  color: #475569;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sod-staff-block .meta .sod-staff-row {
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.4;
}
.sod-staff-block .meta .sod-staff-row i {
  color: #1F4FA8;
  font-size: 14px;
  width: 14px;
  min-width: 14px;
  max-width: 14px;
  text-align: center;
  display: inline-block;
  line-height: 1;
}
.sod-staff-block .meta .sod-staff-row span {
  flex: 1;
  min-width: 0;
  word-break: break-all;
  line-height: 1.4;
}
.sod-staff-block .actions {
  display: flex;
  gap: 8px;
  flex-direction: column;
  min-width: 140px;
}
.sod-staff-block .actions .btn {
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.sod-staff-block .actions .btn-primary {
  background: #1F4FA8;
  border-color: #1F4FA8;
}
.sod-staff-block .actions .btn-outline-secondary {
  border-color: #E2E8F0;
  color: #475569;
}
@media (max-width: 768px) {
  .sod-staff-block {
    flex-direction: column;
    align-items: flex-start;
  }
  .sod-staff-block .actions {
    flex-direction: row;
    width: 100%;
  }
}

.sod-staff-empty {
  background: #FFF7ED;
  border-radius: 12px;
  padding: 18px 20px;
  text-align: center;
  color: #B45309;
}
.sod-staff-empty i {
  font-size: 24px;
  display: block;
  margin-bottom: 6px;
}
.sod-staff-empty .txt {
  font-size: 13px;
}

/* ============ TIMELINE ============ */
.sod-timeline {
  position: relative;
  padding-left: 28px;
}
.sod-timeline::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: #E2E8F0;
}

.sod-tl-item {
  position: relative;
  padding-bottom: 24px;
}
.sod-tl-item:last-child {
  padding-bottom: 0;
}
.sod-tl-item .dot {
  position: absolute;
  left: -28px;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #1F4FA8;
  box-shadow: 0 0 0 3px rgba(31, 79, 168, 0.08);
}
.sod-tl-item .dot.success {
  border-color: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}
.sod-tl-item .dot.warning {
  border-color: #F59E0B;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}
.sod-tl-item .dot.danger {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
.sod-tl-item .dot.system {
  border-color: #94A3B8;
  box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.1);
}
.sod-tl-item .head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.sod-tl-item .type {
  font-size: 12px;
  font-weight: 600;
  color: #1F4FA8;
  background: #EFF6FF;
  padding: 2px 8px;
  border-radius: 4px;
}
.sod-tl-item .type.success {
  color: #047857;
  background: #ECFDF5;
}
.sod-tl-item .type.warning {
  color: #B45309;
  background: #FFFBEB;
}
.sod-tl-item .type.danger {
  color: #B91C1C;
  background: #FEE2E2;
}
.sod-tl-item .type.system {
  color: #475569;
  background: #F1F5F9;
}
.sod-tl-item .time {
  font-size: 12px;
  color: #94A3B8;
}
.sod-tl-item .actor {
  font-size: 12px;
  color: #64748B;
  margin-left: auto;
}
.sod-tl-item .title {
  font-size: 14px;
  font-weight: 600;
  color: #0F172A;
  margin-top: 4px;
}
.sod-tl-item .content {
  font-size: 13px;
  color: #475569;
  margin-top: 6px;
  line-height: 1.6;
}
.sod-tl-item .data {
  background: #F8FAFC;
  border-radius: 8px;
  padding: 10px 14px;
  margin-top: 8px;
}
.sod-tl-item .data .row {
  display: flex;
  gap: 8px;
  font-size: 13px;
  padding: 4px 0;
  border-bottom: 1px dashed #E2E8F0;
}
.sod-tl-item .data .row:last-child {
  border-bottom: none;
}
.sod-tl-item .data .row .k {
  color: #94A3B8;
  min-width: 100px;
}
.sod-tl-item .media {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.sod-tl-item .media .m {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  cursor: pointer;
  transition: transform 0.2s;
}
.sod-tl-item .media .m:hover {
  transform: scale(1.05);
}
.sod-tl-item .media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ============ FORM ============ */
.sod-form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
@media (max-width: 768px) {
  .sod-form-fields {
    grid-template-columns: 1fr 1fr;
  }
}

.sod-form-field {
  min-width: 0;
}
.sod-form-field .form-label {
  font-size: 12px;
  color: #64748B;
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
}
.sod-form-field .form-control, .sod-form-field .form-select {
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
}
.sod-form-field.full-row {
  grid-column: 1/-1;
}

.sod-form-submit {
  margin-top: 18px;
}

/* ============ REVIEW ============ */
.sod-review-display .head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.sod-review-display .scd-stars {
  color: #F59E0B;
  font-size: 16px;
  display: inline-flex;
  gap: 2px;
}
.sod-review-display .scd-stars i {
  color: #CBD5E1;
}
.sod-review-display .scd-stars i.active {
  color: #F59E0B;
}
.sod-review-display .lbl {
  font-size: 12px;
  color: #475569;
}
.sod-review-display .content {
  font-size: 14px;
  color: #0F172A;
  line-height: 1.6;
}
.sod-review-display .tags {
  margin-top: 8px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.sod-review-display .scd-tag {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 12px;
  color: #475569;
}

.sod-review-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
@media (max-width: 768px) {
  .sod-review-form {
    grid-template-columns: 1fr 1fr;
  }
}
.sod-review-form .full-row {
  grid-column: 1/-1;
}

/* ============ SIDEBAR KV ============ */
.sod-kv {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 0;
  font-size: 13px;
}
.sod-kv .k {
  color: #94A3B8;
}
.sod-kv .v {
  color: #0F172A;
  font-weight: 500;
  text-align: right;
  word-break: break-word;
}
.sod-kv .v a {
  color: #1F4FA8;
  text-decoration: none;
}
.sod-kv .v a:hover {
  text-decoration: underline;
}
.sod-kv .v.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.sod-kv.sod-kv-bold {
  font-size: 14px;
}
.sod-kv.sod-kv-bold .v {
  color: #0F172A;
  font-weight: 700;
}
.sod-kv.sod-kv-bold .sod-amount {
  color: #1F4FA8;
  font-size: 18px;
}

/* ============ ACTIONS ============ */
.sod-action-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  margin-bottom: 8px;
  background: #F8FAFC;
  border-radius: 8px;
  color: #0F172A;
  text-decoration: none;
  font-size: 13px;
}
.sod-action-link i {
  color: #1F4FA8;
}
.sod-action-link:hover {
  background: #EFF6FF;
  color: #1F4FA8;
}

/* ============ TIMELINE IMAGE PREVIEW ============ */
.sod-tl-item .media .preview-trigger {
  padding: 0;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
  line-height: 0;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.sod-tl-item .media .preview-trigger:hover {
  border-color: #1F4FA8;
  transform: scale(1.02);
}
.sod-tl-item .media .preview-trigger img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border: none;
}
.sod-tl-item .media .video-thumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: #0F172A;
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  text-decoration: none;
  max-width: 200px;
}
.sod-tl-item .media .video-thumb i {
  font-size: 18px;
}

/* ============ MODAL-MOCK（图片放大预览） ============ */
.modal-mock {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 16px;
}
.modal-mock.show {
  display: flex;
}
.modal-mock .modal-box {
  background: #fff;
  border-radius: 12px;
  width: 520px;
  max-width: calc(100vw - 32px);
  max-height: 86vh;
  overflow: auto;
  padding: 24px 28px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25);
}
.modal-mock .modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 16px;
  border-bottom: 1px solid #F1F5F9;
  margin-bottom: 16px;
}
.modal-mock .modal-head .btn-close {
  background: none;
  border: none;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: #64748B;
}
.modal-mock .modal-head .btn-close:hover {
  color: #0F172A;
}
.modal-mock .modal-foot {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid #F1F5F9;
  margin-top: 16px;
}
.modal-mock .modal-body {
  font-size: 14px;
  color: #475569;
}

.modal-mock.modal-image-preview {
  padding: 0;
  background: rgba(15, 23, 42, 0.85);
  align-items: center;
  justify-content: center;
}
.modal-mock.modal-image-preview .modal-box {
  background: transparent;
  box-shadow: none;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  border-radius: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.modal-mock.modal-image-preview .modal-head {
  background: rgba(15, 23, 42, 0.9);
  color: #fff;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0;
}
.modal-mock.modal-image-preview .modal-head strong {
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.modal-mock.modal-image-preview .modal-head .btn-close {
  color: #94A3B8;
  font-size: 28px;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
}
.modal-mock.modal-image-preview .modal-head .btn-close:hover {
  color: #fff;
}
.modal-mock.modal-image-preview .modal-body {
  flex: 1;
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-mock.modal-image-preview .modal-body img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.modal-mock.modal-image-preview .modal-foot {
  background: rgba(15, 23, 42, 0.9);
  color: #fff;
  padding: 14px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0;
  justify-content: flex-end;
  gap: 8px;
}
.modal-mock.modal-image-preview .modal-foot a.btn {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  background: transparent;
}
.modal-mock.modal-image-preview .modal-foot a.btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/*
 * Copyright (c) Since 2024 Dovecure - All Rights Reserved
 *
 * @link       http://dovecure.com/
 * @author     dovecure <xj@qq.com>
 * @license    https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
 *
 * Front - 服务人员任务详情页样式（重构 V2）
 *
 * 页面：/account/staff/tasks/{id}
 * 文档：service-2.0-design.md / sod-preview-v2.html
 * 命名空间：page-service-staff-task-show
 */
.service-staff-task-show {
  padding-bottom: 32px;
}

.section-task-detail {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
  margin-top: 18px;
  overflow: hidden;
}
.section-task-detail .section-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  border-bottom: 1px solid #F1F5F9;
}
.section-task-detail .section-head .ico {
  width: 4px;
  height: 16px;
  background: #1F4FA8;
  border-radius: 2px;
  flex: 0 0 4px;
}
.section-task-detail .section-head .title {
  font-size: 16px;
  font-weight: 700;
  color: #0F172A;
}
.section-task-detail .section-head .sub {
  font-size: 12px;
  color: #94A3B8;
  margin-left: auto;
}
.section-task-detail .section-body {
  padding: 20px 22px;
}

.task-hero {
  background: linear-gradient(120deg, #1F4FA8 0%, #2563eb 60%, #4f7df0 100%);
  color: #fff;
  border-radius: 16px;
  padding: 22px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(31, 79, 168, 0.12);
  margin-top: 0 !important;
}
.task-hero::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}
.task-hero .task-id {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 13px;
  opacity: 0.85;
}
.task-hero .task-title {
  font-size: 24px;
  font-weight: 700;
  margin: 4px 0 10px;
}
.task-hero .badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.task-hero .badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.95);
  color: #1F4FA8;
}
.task-hero .badge-pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}
.task-hero .badge-pill.muted {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.task-hero .badge-pill.success {
  background: #ECFDF5;
  color: #047857;
}
.task-hero .badge-pill.warn {
  background: #FFFBEB;
  color: #B45309;
}
.task-hero .badge-pill.danger {
  background: #FEE2E2;
  color: #B91C1C;
}
.task-hero .meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  position: relative;
  z-index: 1;
}
.task-hero .meta-item .label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
}
.task-hero .meta-item .value {
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.task-hero .back {
  position: absolute;
  right: 24px;
  top: 24px;
  z-index: 2;
}
.task-hero .back .btn {
  background: rgba(255, 255, 255, 0.95);
  color: #1F4FA8;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.step-trail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: start;
}
.step-trail .step {
  position: relative;
  text-align: center;
  padding: 0 8px;
}
.step-trail .step .dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #E2E8F0;
  color: #94A3B8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  font-size: 14px;
  font-weight: 700;
  border: 3px solid #fff;
  position: relative;
  z-index: 1;
}
.step-trail .step .label {
  font-size: 12px;
  color: #64748B;
}
.step-trail .step.done .dot {
  background: #ECFDF5;
  color: #047857;
}
.step-trail .step.done .label {
  color: #047857;
  font-weight: 600;
}
.step-trail .step.active .dot {
  background: #1F4FA8;
  color: #fff;
  box-shadow: 0 0 0 4px rgba(31, 79, 168, 0.15);
}
.step-trail .step.active .label {
  color: #1F4FA8;
  font-weight: 700;
}
.step-trail .step::after {
  content: "";
  position: absolute;
  top: 16px;
  left: calc(50% + 20px);
  right: calc(-50% + 20px);
  height: 2px;
  background: #E2E8F0;
  z-index: 0;
}
.step-trail .step:last-child::after {
  display: none;
}
.step-trail .step.done::after {
  background: #10B981;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 24px;
}
.info-grid .row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.info-grid .row .label {
  font-size: 12px;
  color: #64748B;
}
.info-grid .row .value {
  font-size: 14px;
  font-weight: 600;
  color: #0F172A;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.info-grid .row .value.highlight {
  color: #1F4FA8;
}
.info-grid .row .value.amount {
  color: #065f46;
}
.info-grid .row .value a {
  color: #1F4FA8;
  text-decoration: none;
}

.task-info-desc {
  margin-top: 12px;
  padding: 12px 14px;
  background: #F8FAFC;
  border-radius: 8px;
  font-size: 13px;
  color: #475569;
  line-height: 1.6;
}

.action-panel {
  background: linear-gradient(135deg, #FEF3C7 0%, #FED7AA 100%);
  border-radius: 12px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.action-panel .ico {
  font-size: 28px;
  color: #B45309;
  flex: 0 0 auto;
}
.action-panel .txt {
  flex: 1;
  min-width: 0;
}
.action-panel .txt .tip {
  font-size: 12px;
  color: #92400E;
  font-weight: 600;
}
.action-panel .txt .main {
  font-size: 15px;
  font-weight: 700;
  color: #7C2D12;
  margin-top: 2px;
}
.action-panel .txt .desc {
  font-size: 12px;
  color: #92400E;
  margin-top: 4px;
}
.action-panel .btn {
  background: #fff;
  color: #B45309;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 15px;
  border: none;
  box-shadow: 0 4px 12px rgba(180, 83, 9, 0.15);
  white-space: nowrap;
}
.action-panel.muted {
  background: linear-gradient(135deg, #F1F5F9 0%, #E2E8F0 100%);
}
.action-panel.muted .ico {
  color: #64748B;
}
.action-panel.muted .txt .tip {
  color: #475569;
}
.action-panel.muted .txt .main {
  color: #0F172A;
}
.action-panel.muted .txt .desc {
  color: #475569;
}
.action-panel form,
.action-panel a.btn {
  align-self: center;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.action-row > .btn {
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}
.action-row > .btn-primary {
  background: #1F4FA8;
  border-color: #1F4FA8;
  color: #fff;
}
.action-row > .btn-outline-primary {
  border-color: #1F4FA8;
  color: #1F4FA8;
  background: #fff;
}
.action-row > .btn-outline-secondary {
  border-color: #E2E8F0;
  color: #475569;
  background: #fff;
}
.action-row > .btn-outline-warning {
  border-color: #F59E0B;
  color: #F59E0B;
  background: #fff;
}
.action-row > .btn-outline-danger {
  border-color: #EF4444;
  color: #EF4444;
  background: #fff;
}
.action-row > .btn-success {
  background: #10B981;
  border-color: #10B981;
  color: #fff;
}
.action-row > .btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}
.action-row.stretch {
  flex-direction: column;
  align-items: stretch;
}

.customer-card {
  background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
  border-radius: 12px;
  padding: 14px 16px;
}
.customer-card.has-avatar {
  background: #fff;
  border: 1px solid #E2E8F0;
}
.customer-card .person {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}
.customer-card .avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #1F4FA8;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex: 0 0 52px;
  overflow: hidden;
}
.customer-card .avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.customer-card .meta {
  min-width: 0;
  flex: 1;
}
.customer-card .name {
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  line-height: 1.3;
}
.customer-card .vip {
  background: #FEF3C7;
  color: #92400E;
  font-size: 11px;
  padding: 1px 8px;
  border-radius: 4px;
  font-weight: 600;
}
.customer-card .vip.alt {
  background: #E0E7FF;
  color: #3730A3;
}
.customer-card .id {
  font-size: 12px;
  color: #64748B;
  margin-top: 2px;
}
.customer-card .contact-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.customer-card .contact-item {
  background: #fff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #E2E8F0;
  overflow: hidden;
}
.customer-card .contact-item > i {
  color: #1F4FA8;
  font-size: 16px;
  flex: 0 0 16px;
}
.customer-card .contact-item .data {
  min-width: 0;
}
.customer-card .contact-item .lbl {
  font-size: 11px;
  color: #64748B;
}
.customer-card .contact-item .val {
  font-size: 13px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.customer-card.staff .avatar {
  background: #6366f1;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-section .form-field {
  width: 100%;
  min-width: 0;
}

.form-section .form-label {
  font-size: 13px;
  color: #334155;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}
.form-section .form-label.required::after {
  content: " *";
  color: #EF4444;
  margin-left: 2px;
}
.form-section .form-label .hint {
  font-size: 12px;
  color: #64748B;
  font-weight: 400;
  margin-left: 6px;
}

.form-section .form-control,
.form-section .form-select,
.form-section textarea,
.form-section input {
  width: 100%;
  display: block;
  box-sizing: border-box;
  padding: 11px 14px;
  font-size: 14px;
  color: #0F172A;
  background: #fff;
  border: 1px solid #CBD5E1;
  border-radius: 10px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  font-family: inherit;
}

.form-section textarea {
  min-height: 100px;
  resize: vertical;
  line-height: 1.6;
}

.form-section .form-control:focus,
.form-section .form-select:focus,
.form-section textarea:focus {
  outline: none;
  border-color: #1F4FA8;
  box-shadow: 0 0 0 3px rgba(31, 79, 168, 0.12);
}

.form-section .upload-box {
  border: 2px dashed #CBD5E1;
  border-radius: 10px;
  padding: 30px 16px;
  text-align: center;
  color: #64748B;
  background: #FAFBFC;
  width: 100%;
  display: block;
  box-sizing: border-box;
  transition: border-color 0.15s, background 0.15s;
  cursor: pointer;
}
.form-section .upload-box:hover {
  border-color: #1F4FA8;
  background: #EFF6FF;
  color: #1F4FA8;
}
.form-section .upload-box > i {
  font-size: 30px;
  display: block;
  margin-bottom: 8px;
}
.form-section .upload-box .tip {
  font-size: 12px;
  margin-top: 6px;
  color: #94A3B8;
}

.form-section .submit-row {
  margin-top: 8px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid #F1F5F9;
}
.form-section .submit-row .btn {
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.form-section .submit-row .btn-primary {
  background: linear-gradient(135deg, #1F4FA8 0%, #2563eb 100%);
  border: 1px solid #1F4FA8;
  color: #fff;
  box-shadow: 0 4px 12px rgba(31, 79, 168, 0.25);
}

.timeline {
  position: relative;
  padding-left: 26px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: #E2E8F0;
}

.tl-item {
  position: relative;
  padding-bottom: 22px;
}
.tl-item:last-child {
  padding-bottom: 0;
}
.tl-item .dot {
  position: absolute;
  left: -26px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #1F4FA8;
  box-shadow: 0 0 0 3px rgba(31, 79, 168, 0.08);
}
.tl-item .dot.success {
  border-color: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}
.tl-item .dot.pending {
  border-color: #F59E0B;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}
.tl-item .dot.danger {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
.tl-item .dot.muted {
  border-color: #94A3B8;
  box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.1);
}
.tl-item .dot.submitted {
  border-color: #60A5FA;
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.12);
}
.tl-item .head {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.tl-item .type {
  font-size: 11px;
  font-weight: 600;
  color: #1F4FA8;
  background: #EFF6FF;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: capitalize;
}
.tl-item .time {
  font-size: 12px;
  color: #94A3B8;
}
.tl-item .actor {
  font-size: 12px;
  color: #64748B;
  margin-left: auto;
}
.tl-item .content {
  font-size: 13px;
  color: #475569;
  margin-top: 4px;
  line-height: 1.6;
}

.empty-state {
  background: #F8FAFC;
  border: 1px dashed #E2E8F0;
  border-radius: 12px;
  text-align: center;
  color: #64748B;
  padding: 24px;
  font-size: 13px;
}

.task-row-2col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: start;
  margin-top: 18px;
}

@media (max-width: 992px) {
  .task-row-2col {
    grid-template-columns: 1fr;
  }
  .task-hero .meta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.modal-mock {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 16px;
}
.modal-mock.show {
  display: flex;
}
.modal-mock .modal-box {
  background: #fff;
  border-radius: 12px;
  width: 520px;
  max-width: calc(100vw - 32px);
  max-height: 86vh;
  overflow: auto;
  padding: 24px 28px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25);
  animation: zoomIn 0.2s;
}
.modal-mock .modal-box.wide {
  width: 720px;
}
.modal-mock .modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #F1F5F9;
}
.modal-mock .modal-head strong {
  font-size: 16px;
  color: #0F172A;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.modal-mock .modal-head strong > i {
  color: #1F4FA8;
}
.modal-mock .modal-head .btn-close {
  background: transparent;
  border: none;
  color: #94A3B8;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}
.modal-mock .modal-head .btn-close:hover {
  color: #0F172A;
}
.modal-mock .modal-desc {
  color: #64748B;
  font-size: 13px;
  margin-bottom: 16px;
  line-height: 1.6;
}
.modal-mock .modal-foot {
  margin-top: 18px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid #F1F5F9;
}
.modal-mock .modal-foot .btn {
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
}
.modal-mock .modal-foot .btn-outline-secondary {
  border-color: #E2E8F0;
  color: #475569;
  background: #fff;
}
.modal-mock .modal-foot .btn-success {
  background: #10B981;
  color: #fff;
}
.modal-mock .form-section {
  gap: 14px;
}
.modal-mock .form-section .submit-row {
  border-top: none;
  padding-top: 8px;
  margin-top: 4px;
}
.modal-mock .upload-box-real {
  border: 2px dashed #CBD5E1;
  border-radius: 10px;
  padding: 28px 16px;
  text-align: center;
  color: #64748B;
  background: #FAFBFC;
  display: block;
  box-sizing: border-box;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.modal-mock .upload-box-real:hover {
  border-color: #1F4FA8;
  background: #EFF6FF;
}
.modal-mock .upload-box-real > i {
  font-size: 30px;
  display: block;
  margin-bottom: 8px;
}
.modal-mock .upload-box-real .up-text {
  font-size: 13px;
}
.modal-mock .upload-box-real .tip {
  font-size: 12px;
  margin-top: 6px;
  color: #94A3B8;
}
.modal-mock .upload-box-real input[type=file] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.modal-mock .upload-previews {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 8px;
  margin-top: 8px;
}
.modal-mock .upload-previews .preview-item {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  background: #F8FAFC;
}
.modal-mock .upload-previews .preview-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.modal-mock .upload-previews .preview-item .preview-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 4px 6px;
  background: rgba(15, 23, 42, 0.7);
  color: #fff;
  font-size: 11px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.modal-mock .upload-previews .preview-item .preview-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 18px;
  height: 18px;
  border: none;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.8);
  color: #fff;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.modal-mock .upload-previews .preview-item .preview-video {
  width: 100%;
  height: 100%;
  position: relative;
  background: #0F172A;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  text-align: center;
  padding: 4px;
}
.modal-mock .upload-previews .preview-item .preview-video i {
  font-size: 22px;
  display: block;
  margin-bottom: 4px;
}
.modal-mock .upload-previews .preview-item .preview-video .file-icon {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.modal-mock select, .modal-mock textarea, .modal-mock input[type=text], .modal-mock input[type=email], .modal-mock input[type=number], .modal-mock input[type=datetime-local] {
  width: 100%;
  display: block;
  box-sizing: border-box;
  padding: 11px 14px;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  border: 1px solid #CBD5E1;
  border-radius: 10px;
  font-family: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.modal-mock textarea {
  min-height: 96px;
  resize: vertical;
  line-height: 1.6;
}
.modal-mock select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2364748B' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 38px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.modal-mock select:focus, .modal-mock textarea:focus, .modal-mock input:focus {
  outline: none;
  border-color: #1F4FA8;
  box-shadow: 0 0 0 3px rgba(31, 79, 168, 0.12);
}
.modal-mock .radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 0;
}
.modal-mock .radio-row label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid #CBD5E1;
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.modal-mock .radio-row label:hover {
  border-color: #1F4FA8;
}
.modal-mock .radio-row label:has(input[type=radio]:checked) {
  background: #EFF6FF;
  border-color: #1F4FA8;
  color: #1F4FA8;
}
.modal-mock .radio-row input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #CBD5E1;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.modal-mock .radio-row input[type=radio]:hover {
  border-color: #1F4FA8;
}
.modal-mock .radio-row input[type=radio]:checked {
  border-color: #1F4FA8;
}
.modal-mock .radio-row input[type=radio]:checked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #1F4FA8;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: none;
}
.modal-mock .radio-row input[type=radio]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(31, 79, 168, 0.15);
}
.modal-mock .radio-row input[type=radio]:focus::before {
  transform: translate(-50%, -50%);
}
.modal-mock .checkbox-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 0;
}
.modal-mock .checkbox-row label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid #CBD5E1;
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.modal-mock .checkbox-row label:hover {
  border-color: #1F4FA8;
}
.modal-mock .checkbox-row label:has(input[type=checkbox]:checked) {
  background: #EFF6FF;
  border-color: #1F4FA8;
  color: #1F4FA8;
}
.modal-mock .checkbox-row input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #CBD5E1;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.modal-mock .checkbox-row input[type=checkbox]:hover {
  border-color: #1F4FA8;
}
.modal-mock .checkbox-row input[type=checkbox]:checked {
  background: #1F4FA8;
  border-color: #1F4FA8;
}
.modal-mock .checkbox-row input[type=checkbox]:checked::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 4px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.modal-mock .checkbox-row input[type=checkbox]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(31, 79, 168, 0.15);
}

.customer-info-section .section-head .ico.customer-info {
  background: linear-gradient(135deg, #1F4FA8 0%, #4f7df0 100%);
}

.customer-info-section .status-tag {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  vertical-align: middle;
}
.customer-info-section .status-tag.approved {
  background: #ECFDF5;
  color: #047857;
}
.customer-info-section .status-tag.pending {
  background: #FEF3C7;
  color: #B45309;
}

.customer-info-summary {
  background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
  border-left: 3px solid #1F4FA8;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: #1E40AF;
  margin-bottom: 14px;
  line-height: 1.6;
}

.customer-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
}

.customer-info-item {
  background: #F8FAFC;
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.customer-info-item .lbl {
  font-size: 11px;
  color: #64748B;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.customer-info-item .val {
  font-size: 14px;
  color: #0F172A;
  font-weight: 600;
  word-break: break-all;
}

.customer-info-pending {
  background: #FFF7ED;
  border: 1px dashed #FB923C;
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #9A3412;
  font-size: 13px;
}
.customer-info-pending i {
  font-size: 22px;
  color: #EA580C;
}

.tl-item .media {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.tl-item .media img {
  width: 76px;
  height: 76px;
  border-radius: 6px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #E2E8F0;
}
.tl-item .media .video-thumb {
  width: 76px;
  height: 76px;
  border-radius: 6px;
  background: #0F172A;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  text-align: center;
  padding: 4px;
  line-height: 1.2;
}
.tl-item .media .video-thumb i {
  font-size: 22px;
  display: block;
  margin-bottom: 2px;
}

.tl-item .data {
  background: #F8FAFC;
  border-radius: 8px;
  padding: 10px 14px;
  margin-top: 8px;
}
.tl-item .data .row {
  display: flex;
  gap: 8px;
  font-size: 13px;
  padding: 4px 0;
  border-bottom: 1px dashed #E2E8F0;
}
.tl-item .data .row:last-child {
  border-bottom: none;
}
.tl-item .data .row .k {
  color: #64748B;
  min-width: 100px;
  flex: 0 0 auto;
}
.tl-item .data .row .v {
  color: #0F172A;
  word-break: break-word;
  flex: 1;
}

.tl-item .head .actor {
  margin-left: auto;
  color: #475569;
}

.tl-item .tl-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin: 4px 0 6px;
  line-height: 1.4;
}

.tl-item .content {
  font-size: 13px;
  color: #475569;
  line-height: 1.6;
  margin-top: 4px;
}

.tl-item .content:has(+ .media),
.tl-item .content:has(+ .data) {
  margin-bottom: 6px;
}

.tl-item .media {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.tl-item .media .preview-trigger {
  padding: 0;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
  line-height: 0;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.tl-item .media .preview-trigger:hover {
  border-color: #1F4FA8;
  transform: scale(1.02);
}
.tl-item .media .preview-trigger img {
  width: 96px;
  height: 96px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border: none;
}
.tl-item .media .video-thumb {
  width: 96px;
  height: 96px;
  border-radius: 8px;
  background: #0F172A;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  text-align: center;
  padding: 4px;
  line-height: 1.2;
  flex-direction: column;
}
.tl-item .media .video-thumb i {
  font-size: 22px;
  display: block;
  margin-bottom: 2px;
}

.modal-mock.modal-image-preview {
  padding: 0;
  background: rgba(15, 23, 42, 0.85);
  align-items: center;
  justify-content: center;
}
.modal-mock.modal-image-preview .modal-box {
  background: transparent;
  box-shadow: none;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  border-radius: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.modal-mock.modal-image-preview .modal-head {
  background: rgba(15, 23, 42, 0.9);
  color: #fff;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0;
}
.modal-mock.modal-image-preview .modal-head strong {
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.modal-mock.modal-image-preview .modal-head .btn-close {
  color: #94A3B8;
  font-size: 28px;
}
.modal-mock.modal-image-preview .modal-head .btn-close:hover {
  color: #fff;
}
.modal-mock.modal-image-preview .modal-body {
  flex: 1;
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-mock.modal-image-preview .modal-body img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: zoomIn 0.25s;
}
.modal-mock.modal-image-preview .modal-foot {
  background: rgba(15, 23, 42, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 24px;
  margin: 0;
}

@keyframes zoomIn {
  from {
    transform: scale(0.92);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
body.page-service-product {
  --card-radius: 16px;
}
body.page-service-product .section {
  padding: 96px 0;
}
body.page-service-product .section.soft {
  background: #FAFBFC;
}
body.page-service-product .page-head {
  padding: 64px 0 48px;
  background: linear-gradient(180deg, #fff 0%, #E6F7F8 100%);
  position: relative;
  overflow: hidden;
}
body.page-service-product .page-head::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, #C4EBED 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}
body.page-service-product .page-head .container {
  position: relative;
  z-index: 1;
}
body.page-service-product .page-head h1 {
  font-size: 40px;
  font-weight: 700;
  color: #0F1F2A;
  line-height: 1.2;
  margin-bottom: 16px;
}
body.page-service-product .page-head h1 .accent {
  color: #0F8A8E;
}
@media (max-width: 992px) {
  body.page-service-product .page-head h1 {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  body.page-service-product .page-head h1 {
    font-size: 26px;
  }
}
body.page-service-product .page-head .subtitle {
  font-size: 17px;
  color: #5A6B7A;
  line-height: 1.7;
  max-width: 720px;
}
body.page-service-product .service-detail-top {
  background: #fff;
  padding: 64px 0;
}
@media (max-width: 992px) {
  body.page-service-product .service-detail-top {
    padding: 32px 0;
  }
}
@media (max-width: 576px) {
  body.page-service-product .service-detail-top {
    padding-top: 0;
  }
}
@media (max-width: 576px) {
  body.page-service-product .breadcrumb-wrap {
    margin-bottom: 0;
  }
}
@media (max-width: 576px) {
  body.page-service-product .desc,
  body.page-service-product .service-name,
  body.page-service-product .service-name-cn,
  body.page-service-product .service-desc,
  body.page-service-product h1, body.page-service-product h2, body.page-service-product h3, body.page-service-product h4, body.page-service-product p,
  body.page-service-product .price-card-top .value {
    overflow-wrap: break-word;
    word-break: break-word;
  }
}
body.page-service-product .service-detail-top-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 992px) {
  body.page-service-product .service-detail-top-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
body.page-service-product .gallery {
  position: relative;
}
body.page-service-product .gallery-main {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, #E6F7F8, #C4EBED);
  border-radius: var(--card-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
body.page-service-product .gallery-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.page-service-product .gallery-main svg {
  width: 120px;
  height: 120px;
  color: #4BC6CA;
  opacity: 0.3;
}
body.page-service-product .gallery-counter {
  position: absolute;
  right: 16px;
  bottom: 16px;
  background: rgba(15, 31, 42, 0.6);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 6px;
}
body.page-service-product .gallery-counter svg {
  width: 14px;
  height: 14px;
  opacity: 1;
  color: #fff;
}
body.page-service-product .gallery-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  padding-bottom: 4px;
}
body.page-service-product .gallery-thumbs::-webkit-scrollbar {
  height: 6px;
}
body.page-service-product .gallery-thumbs::-webkit-scrollbar-track {
  background: transparent;
}
body.page-service-product .gallery-thumbs::-webkit-scrollbar-thumb {
  background: #E5E9EC;
  border-radius: 3px;
}
body.page-service-product .gallery-thumbs::-webkit-scrollbar-thumb:hover {
  background: #8C9AA8;
}
body.page-service-product .gallery-thumb {
  flex: 0 0 88px;
  width: 88px;
  height: 88px;
  aspect-ratio: 1/1;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 200ms;
  background: #FAFBFC;
}
body.page-service-product .gallery-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
body.page-service-product .gallery-thumb:hover {
  border-color: #C4EBED;
}
body.page-service-product .gallery-thumb.active {
  border-color: #4BC6CA;
}
@media (max-width: 576px) {
  body.page-service-product .service-detail-top {
    overflow: clip;
  }
  body.page-service-product .gallery {
    margin-left: -12px;
    margin-right: -12px;
    width: calc(100% + 24px);
    overflow: clip;
  }
  body.page-service-product .gallery-main {
    border-radius: 0;
    max-width: 100%;
    border: 0;
  }
  body.page-service-product .gallery-counter {
    right: 10px;
    bottom: 10px;
    padding: 3px 10px;
    font-size: 11px;
  }
  body.page-service-product .gallery-counter svg {
    width: 12px;
    height: 12px;
  }
  body.page-service-product .gallery-thumbs {
    gap: 6px;
    margin-top: 8px;
    padding: 0 12px 2px;
    overflow-x: visible;
    flex-wrap: wrap;
  }
  body.page-service-product .gallery-thumb {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    border-radius: 6px;
    border-width: 2px;
  }
}
body.page-service-product .price-card-top {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}
body.page-service-product .price-card-top .label {
  font-size: 14px;
  color: #5A6B7A;
  font-weight: 500;
}
body.page-service-product .price-card-top .value {
  font-size: 36px;
  font-weight: 700;
  color: #E53E3E;
  line-height: 1;
}
body.page-service-product .price-card-top .origin {
  font-size: 14px;
  color: #8C9AA8;
  text-decoration: line-through;
}
@media (max-width: 576px) {
  body.page-service-product .service-detail-top-text h1.service-detail-top-title {
    font-size: 22px;
    margin-bottom: 12px;
  }
  body.page-service-product .service-detail-top-text .desc {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
  }
  body.page-service-product .service-detail-top-text .data-row {
    padding: 16px 0;
    gap: 12px;
    margin-bottom: 16px;
  }
  body.page-service-product .service-detail-top-text .data-num {
    font-size: 20px;
  }
  body.page-service-product .service-detail-top-text .data-label {
    font-size: 11px;
  }
  body.page-service-product .service-detail-top-text .meta-row {
    margin-bottom: 16px;
  }
  body.page-service-product .service-detail-top-text .price-card-top {
    margin-bottom: 16px;
  }
  body.page-service-product .service-detail-top-text .price-card-top .value {
    font-size: 30px;
  }
  body.page-service-product .service-detail-top-text .actions {
    gap: 8px;
    flex-wrap: wrap;
  }
}
body.page-service-product .service-detail-top-text h1.service-detail-top-title {
  font-size: 28px;
  font-weight: 700;
  color: #0F1F2A;
  line-height: 1.4;
  margin-bottom: 20px;
}
body.page-service-product .service-detail-top-text .desc {
  font-size: 16px;
  color: #5A6B7A;
  line-height: 1.9;
  margin-bottom: 28px;
}
body.page-service-product .service-detail-top-text .data-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid #E5E9EC;
  border-bottom: 1px solid #E5E9EC;
  margin-bottom: 28px;
}
@media (max-width: 576px) {
  body.page-service-product .service-detail-top-text .data-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
body.page-service-product .service-detail-top-text .data-item {
  text-align: center;
}
body.page-service-product .service-detail-top-text .data-num {
  font-size: 24px;
  font-weight: 700;
  color: #0F8A8E;
  line-height: 1.2;
}
body.page-service-product .service-detail-top-text .data-label {
  font-size: 12px;
  color: #5A6B7A;
  margin-top: 4px;
}
body.page-service-product .service-detail-top-text .meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
body.page-service-product .service-detail-top-text .meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.9);
  color: #5A6B7A;
  border: 1px solid #E5E9EC;
  line-height: 1;
  text-decoration: none;
  transition: all 200ms;
}
body.page-service-product .service-detail-top-text .meta-tag.primary {
  color: #0F8A8E;
  border-color: #4BC6CA;
  background: rgba(255, 255, 255, 0.95);
}
body.page-service-product .service-detail-top-text .meta-tag:hover {
  color: #4BC6CA;
  border-color: #4BC6CA;
}
body.page-service-product .service-detail-top-text .actions {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  align-items: stretch;
}
body.page-service-product .sub-nav {
  position: sticky;
  top: 132px;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid #E5E9EC;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  body.page-service-product .sub-nav {
    top: 110px;
  }
}
@media (max-width: 576px) {
  body.page-service-product .sub-nav {
    top: 104px;
    margin-bottom: 16px;
  }
}
body.page-service-product .sub-nav .container {
  max-width: 1200px;
  padding: 0 24px;
}
@media (max-width: 576px) {
  body.page-service-product .sub-nav .container {
    padding: 0 16px;
  }
}
body.page-service-product .sub-nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 56px;
  overflow-x: auto;
  scrollbar-width: none;
}
body.page-service-product .sub-nav-inner::-webkit-scrollbar {
  display: none;
}
body.page-service-product .sub-nav-link {
  font-size: 15px;
  font-weight: 500;
  color: #5A6B7A;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  padding: 8px 0;
  transition: color 200ms;
}
body.page-service-product .sub-nav-link:hover {
  color: #4BC6CA;
}
body.page-service-product .sub-nav-link.active {
  color: #0F8A8E;
  font-weight: 600;
}
body.page-service-product .sub-nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: #4BC6CA;
}
body.page-service-product .sub-nav-counter {
  font-size: 12px;
  color: #8C9AA8;
  background: #FAFBFC;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 6px;
}
body.page-service-product .section-head {
  margin-bottom: 32px;
}
body.page-service-product .section-head .eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: #4BC6CA;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
body.page-service-product .section-head h2 {
  font-size: 28px;
  font-weight: 700;
  color: #0F1F2A;
  line-height: 1.2;
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
  margin: 0;
}
body.page-service-product .section-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 2px;
  background: #4BC6CA;
}
body.page-service-product .section-head p {
  font-size: 15px;
  color: #5A6B7A;
  line-height: 1.6;
  margin: 12px 0 0;
  max-width: 720px;
}
body.page-service-product .section-head.row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 24px;
}
@media (max-width: 576px) {
  body.page-service-product .section-head.row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
body.page-service-product .section-head.row .left {
  min-width: 0;
}
body.page-service-product .text-link {
  font-size: 14px;
  font-weight: 500;
  color: #4BC6CA;
  text-decoration: none;
  white-space: nowrap;
}
body.page-service-product .text-link::after {
  content: " →";
}
body.page-service-product .text-link:hover {
  color: #0F8A8E;
}
body.page-service-product .service-config-table {
  background: #fff;
  border: 1px solid #E5E9EC;
  border-radius: var(--card-radius);
  overflow: hidden;
}
body.page-service-product .service-config-row {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 0.8fr;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #E5E9EC;
  transition: background 200ms;
}
body.page-service-product .service-config-row:last-child {
  border-bottom: none;
}
body.page-service-product .service-config-row:not(.service-config-head):hover {
  background: #FAFBFC;
}
@media (max-width: 768px) {
  body.page-service-product .service-config-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px;
  }
  body.page-service-product .service-config-row .col-qty, body.page-service-product .service-config-row .col-status {
    grid-column: span 1;
  }
}
body.page-service-product .service-config-head {
  background: #E6F7F8;
  color: #0F8A8E;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
body.page-service-product .service-config-head:hover {
  background: #E6F7F8;
}
body.page-service-product .col-name .service-name {
  font-size: 15px;
  font-weight: 600;
  color: #0F1F2A;
  line-height: 1.4;
}
body.page-service-product .col-name .service-name-cn {
  font-size: 14px;
  font-weight: 500;
  color: #0F8A8E;
  margin-top: 4px;
}
body.page-service-product .col-name .service-desc {
  font-size: 12px;
  color: #8C9AA8;
  line-height: 1.6;
  margin-top: 6px;
}
body.page-service-product .col-price .service-unit-price {
  font-size: 15px;
  font-weight: 600;
  color: #0F1F2A;
}
body.page-service-product .col-price .service-unit-price .text-muted {
  font-size: 12px;
  margin-left: 4px;
}
body.page-service-product .col-qty .service-qty {
  font-size: 13px;
  color: #5A6B7A;
}
body.page-service-product .col-status .badge {
  font-size: 11px;
  padding: 4px 10px;
  font-weight: 500;
}
body.page-service-product .service-config-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}
body.page-service-product .service-content {
  max-width: 880px;
  margin: 0 auto;
}
body.page-service-product .service-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0F1F2A;
  margin: 40px 0 16px;
}
body.page-service-product .service-content h3:first-child {
  margin-top: 0;
}
body.page-service-product .service-content p {
  font-size: 15px;
  color: #5A6B7A;
  line-height: 1.9;
  margin-bottom: 16px;
}
body.page-service-product .service-content ul, body.page-service-product .service-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
body.page-service-product .service-content ul li, body.page-service-product .service-content ol li {
  font-size: 15px;
  color: #5A6B7A;
  line-height: 1.9;
  margin-bottom: 8px;
}
body.page-service-product .service-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 16px 0;
}
body.page-service-product .service-content strong {
  color: #0F1F2A;
  font-weight: 600;
}
body.page-service-product .content-summary p {
  font-size: 16px;
  color: #0F1F2A;
  line-height: 1.8;
}
body.page-service-product .subservice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 576px) {
  body.page-service-product .subservice-grid {
    grid-template-columns: 1fr;
  }
}
body.page-service-product .subservice {
  background: #fff;
  border-radius: var(--card-radius);
  border: 1px solid #E5E9EC;
  padding: 32px;
  display: flex;
  gap: 24px;
  transition: all 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
body.page-service-product .subservice:hover {
  border-color: #4BC6CA;
  box-shadow: 0 12px 32px rgba(15, 31, 42, 0.08);
  transform: translateY(-2px);
}
body.page-service-product .subservice .icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: #E6F7F8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
body.page-service-product .subservice .icon svg {
  width: 32px;
  height: 32px;
  color: #4BC6CA;
}
body.page-service-product .subservice .body {
  flex: 1;
  min-width: 0;
}
body.page-service-product .subservice .body h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0F1F2A;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
body.page-service-product .subservice .body h3 .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 100px;
  background: #E6F7F8;
  color: #0F8A8E;
  letter-spacing: 0.04em;
}
body.page-service-product .subservice .body p {
  font-size: 14px;
  color: #5A6B7A;
  line-height: 1.7;
  margin-bottom: 16px;
}
body.page-service-product .subservice .features {
  list-style: none;
  padding: 0;
  margin: 0;
}
body.page-service-product .subservice .features li {
  font-size: 13px;
  color: #5A6B7A;
  padding: 5px 0 5px 22px;
  position: relative;
  line-height: 1.6;
}
body.page-service-product .subservice .features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 5px;
  color: #4BC6CA;
  font-weight: 700;
}
@media (max-width: 576px) {
  body.page-service-product .subservice {
    flex-direction: column;
  }
}
body.page-service-product .feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 992px) {
  body.page-service-product .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  body.page-service-product .feature-grid {
    grid-template-columns: 1fr;
  }
}
body.page-service-product .feature-card {
  background: #fff;
  border-radius: var(--card-radius);
  border: 1px solid #E5E9EC;
  padding: 32px 24px;
  text-align: center;
  transition: all 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
body.page-service-product .feature-card:hover {
  border-color: #4BC6CA;
  box-shadow: 0 12px 32px rgba(15, 31, 42, 0.08);
  transform: translateY(-4px);
}
body.page-service-product .feature-card .feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: #E6F7F8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
body.page-service-product .feature-card .feature-icon svg {
  width: 28px;
  height: 28px;
  color: #4BC6CA;
}
body.page-service-product .feature-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0F1F2A;
  margin-bottom: 8px;
}
body.page-service-product .feature-card p {
  font-size: 13px;
  color: #5A6B7A;
  line-height: 1.6;
}
body.page-service-product .process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  position: relative;
}
body.page-service-product .process-grid[data-steps="3"] {
  grid-template-columns: repeat(3, 1fr);
}
body.page-service-product .process-grid[data-steps="4"] {
  grid-template-columns: repeat(4, 1fr);
}
body.page-service-product .process-grid[data-steps="5"] {
  grid-template-columns: repeat(5, 1fr);
}
body.page-service-product .process-grid[data-steps="6"] {
  grid-template-columns: repeat(6, 1fr);
}
body.page-service-product .process-step {
  position: relative;
}
body.page-service-product .process-step .num {
  font-size: 40px;
  font-weight: 700;
  color: #4BC6CA;
  opacity: 0.4;
  line-height: 1;
}
body.page-service-product .process-step .line {
  width: 32px;
  height: 2px;
  background: #4BC6CA;
  margin-bottom: 16px;
}
body.page-service-product .process-step h4 {
  font-size: 17px;
  font-weight: 600;
  color: #0F1F2A;
  margin-bottom: 10px;
}
body.page-service-product .process-step p {
  font-size: 13px;
  color: #5A6B7A;
  line-height: 1.6;
}
body.page-service-product .process-step::after {
  content: "";
  position: absolute;
  top: 20px;
  right: -24px;
  width: 24px;
  height: 0;
  border-top: 2px dashed #C4EBED;
}
body.page-service-product .process-step:last-child::after {
  display: none;
}
@media (max-width: 992px) {
  body.page-service-product .process-grid,
  body.page-service-product .process-grid[data-steps] {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  body.page-service-product .process-grid .process-step::after,
  body.page-service-product .process-grid[data-steps] .process-step::after {
    display: none;
  }
}
@media (max-width: 576px) {
  body.page-service-product .process-grid,
  body.page-service-product .process-grid[data-steps] {
    grid-template-columns: 1fr !important;
  }
}
body.page-service-product .hospital-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 992px) {
  body.page-service-product .hospital-mini-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  body.page-service-product .hospital-mini-grid {
    grid-template-columns: 1fr;
  }
}
body.page-service-product .hospital-mini {
  background: #fff;
  border: 1px solid #E5E9EC;
  border-radius: var(--card-radius);
  padding: 24px;
  text-align: center;
  transition: all 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
  text-decoration: none;
  display: block;
}
body.page-service-product .hospital-mini:hover {
  border-color: #4BC6CA;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(15, 31, 42, 0.08);
}
body.page-service-product .hospital-mini .img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4BC6CA 0%, #0F8A8E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
body.page-service-product .hospital-mini .img svg {
  width: 36px;
  height: 36px;
  color: #fff;
}
body.page-service-product .hospital-mini h5 {
  font-size: 15px;
  font-weight: 600;
  color: #0F1F2A;
  margin-bottom: 4px;
}
body.page-service-product .hospital-mini .country {
  font-size: 12px;
  color: #8C9AA8;
}
body.page-service-product .doctor-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 992px) {
  body.page-service-product .doctor-mini-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  body.page-service-product .doctor-mini-grid {
    grid-template-columns: 1fr;
  }
}
body.page-service-product .doctor-mini {
  background: #fff;
  border: 1px solid #E5E9EC;
  border-radius: var(--card-radius);
  padding: 24px;
  text-align: center;
  transition: all 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
  text-decoration: none;
  display: block;
}
body.page-service-product .doctor-mini:hover {
  border-color: #4BC6CA;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(15, 31, 42, 0.08);
}
body.page-service-product .doctor-mini .avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #E6F7F8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  overflow: hidden;
}
body.page-service-product .doctor-mini .avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.page-service-product .doctor-mini .avatar svg {
  width: 36px;
  height: 36px;
  color: #4BC6CA;
}
body.page-service-product .doctor-mini h5 {
  font-size: 15px;
  font-weight: 600;
  color: #0F1F2A;
  margin-bottom: 4px;
}
body.page-service-product .doctor-mini .title {
  font-size: 12px;
  color: #8C9AA8;
  margin: 4px 0;
}
body.page-service-product .doctor-mini .dept {
  font-size: 12px;
  color: #4BC6CA;
  font-weight: 500;
}
body.page-service-product .faq-list {
  max-width: 880px;
  margin: 0 auto;
}
body.page-service-product .faq-item {
  background: #fff;
  border: 1px solid #E5E9EC;
  border-radius: var(--card-radius);
  margin-bottom: 16px;
  overflow: hidden;
  transition: border-color 200ms;
}
body.page-service-product .faq-item:hover {
  border-color: #C4EBED;
}
body.page-service-product .faq-item .faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  cursor: pointer;
  gap: 16px;
}
body.page-service-product .faq-item .faq-q h4 {
  font-size: 16px;
  font-weight: 600;
  color: #0F1F2A;
  margin: 0;
  flex: 1;
}
body.page-service-product .faq-item .faq-q .toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #E6F7F8;
  color: #0F8A8E;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
  line-height: 1;
}
body.page-service-product .faq-item .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
body.page-service-product .faq-item .faq-a p {
  padding: 0 32px 24px;
  margin: 0;
  font-size: 14px;
  color: #5A6B7A;
  line-height: 1.8;
}
body.page-service-product .faq-item.open .faq-a {
  max-height: 600px;
}
body.page-service-product .faq-item.open .toggle {
  transform: rotate(45deg);
  background: #4BC6CA;
  color: #fff;
}
body.page-service-product .service-cta {
  background: #0F8A8E;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
body.page-service-product .service-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, #4BC6CA 0%, transparent 50%);
  opacity: 0.3;
}
body.page-service-product .service-cta .container {
  position: relative;
  z-index: 1;
}
body.page-service-product .service-cta .top-text {
  text-align: center;
  margin-bottom: 48px;
}
body.page-service-product .service-cta .top-text h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 16px;
}
body.page-service-product .service-cta .top-text .sub {
  color: #C4EBED;
  font-size: 16px;
}
body.page-service-product .service-cta-card {
  background: #fff;
  border-radius: var(--card-radius);
  padding: 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 992px) {
  body.page-service-product .service-cta-card {
    grid-template-columns: 1fr;
    padding: 40px;
    gap: 32px;
  }
}
body.page-service-product .service-cta-card .left h3 {
  font-size: 28px;
  font-weight: 700;
  color: #0F1F2A;
  margin-bottom: 12px;
}
body.page-service-product .service-cta-card .left p {
  font-size: 14px;
  color: #5A6B7A;
  line-height: 1.6;
  margin-bottom: 24px;
}
body.page-service-product .service-cta-card .right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
body.page-service-product .service-cta-contact {
  display: flex;
  align-items: center;
  gap: 16px;
}
body.page-service-product .service-cta-contact .icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #E6F7F8;
  color: #0F8A8E;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
body.page-service-product .service-cta-contact .icon-wrap svg {
  width: 22px;
  height: 22px;
}
body.page-service-product .service-cta-contact .label {
  font-size: 12px;
  color: #8C9AA8;
  margin-bottom: 2px;
}
body.page-service-product .service-cta-contact .value {
  font-size: 16px;
  font-weight: 600;
  color: #0F1F2A;
}
@media (max-width: 992px) {
  body.page-service-product .section {
    padding: 64px 0;
  }
}
@media (max-width: 576px) {
  body.page-service-product .section {
    padding: 48px 0;
  }
  body.page-service-product .page-head {
    padding: 48px 0 32px;
  }
}

body[class*=page-service-product] .btn-lg-action {
  height: 56px;
  padding: 0 32px;
  min-width: 180px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (max-width: 576px) {
  body[class*=page-service-product] .btn-lg-action {
    min-width: 0;
    flex: 1 1 auto;
    padding: 0 16px;
    height: 48px;
    font-size: 15px;
  }
}

body.page-service-product-configure .service-product-configure {
  padding-bottom: 32px;
}
body.page-service-product-configure .card,
body.page-service-product-configure .card-body,
body.page-service-product-configure .service-row.card,
body.page-service-product-configure .price-summary.card {
  border-radius: var(--radius-card) !important;
}
body.page-service-product-configure .form-control,
body.page-service-product-configure .btn {
  border-radius: var(--radius-button);
}
body.page-service-product-configure .action-bar {
  margin-top: 32px;
  padding: 24px 0;
  gap: 16px;
}
@media (max-width: 576px) {
  body.page-service-product-configure .action-bar {
    padding: 16px 0;
    flex-direction: column;
  }
}

body.page-hospitals {
  --card-radius: 12px;
  --grid-gap: 24px;
}
body.page-hospitals .page-head-listing {
  padding: 80px 0 64px;
  background: linear-gradient(180deg, #fff 0%, #E6F7F8 100%);
  position: relative;
  overflow: hidden;
}
body.page-hospitals .page-head-listing::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, #C4EBED 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}
body.page-hospitals .page-head-listing .container {
  position: relative;
  z-index: 1;
}
body.page-hospitals .page-head-listing .breadcrumb-mini {
  font-size: 13px;
  color: #8C9AA8;
  margin-bottom: 16px;
}
body.page-hospitals .page-head-listing .breadcrumb-mini a {
  color: #8C9AA8;
  text-decoration: none;
  transition: color 200ms;
}
body.page-hospitals .page-head-listing .breadcrumb-mini a:hover {
  color: #4BC6CA;
}
body.page-hospitals .page-head-listing .breadcrumb-mini .sep {
  margin: 0 8px;
  opacity: 0.5;
}
body.page-hospitals .page-head-listing h1 {
  font-size: 44px;
  font-weight: 700;
  color: #0F1F2A;
  line-height: 1.15;
  margin-bottom: 16px;
}
body.page-hospitals .page-head-listing h1 .accent {
  color: #0F8A8E;
}
@media (max-width: 992px) {
  body.page-hospitals .page-head-listing h1 {
    font-size: 36px;
  }
}
@media (max-width: 576px) {
  body.page-hospitals .page-head-listing h1 {
    font-size: 28px;
  }
}
body.page-hospitals .page-head-listing .subtitle {
  font-size: 18px;
  color: #5A6B7A;
  line-height: 1.6;
  max-width: 720px;
}
body.page-hospitals .filter-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 24px;
  background: #fff;
  border: 1px solid #E5E9EC;
  border-radius: var(--card-radius);
  margin: 40px 0;
}
body.page-hospitals .filter-bar .filter-group {
  display: flex;
  align-items: center;
  gap: 12px;
}
body.page-hospitals .filter-bar .filter-group .label {
  font-size: 14px;
  font-weight: 600;
  color: #0F1F2A;
  white-space: nowrap;
}
body.page-hospitals .filter-bar .filter-group .checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
body.page-hospitals .filter-bar .filter-group .checkbox-label input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: #4BC6CA;
  cursor: pointer;
}
body.page-hospitals .filter-bar .filter-group .checkbox-label span {
  font-size: 14px;
  font-weight: 500;
  color: #0F1F2A;
}
body.page-hospitals .filter-bar .filter-select {
  height: 36px;
  padding: 0 32px 0 12px;
  border: 1px solid #E5E9EC;
  border-radius: 6px;
  background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M3 4.5L6 7.5L9 4.5' stroke='%235A6B7A' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>") no-repeat right 10px center;
  color: #0F1F2A;
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  min-width: 160px;
}
body.page-hospitals .filter-bar .filter-select:focus {
  outline: none;
  border-color: #4BC6CA;
}
@media (max-width: 992px) {
  body.page-hospitals .filter-bar {
    gap: 16px;
  }
}
@media (max-width: 576px) {
  body.page-hospitals .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }
  body.page-hospitals .filter-bar .filter-group {
    flex-direction: column;
    align-items: flex-start;
  }
  body.page-hospitals .filter-bar .filter-group .filter-select {
    width: 100%;
    min-width: 0;
  }
}
body.page-hospitals .hospital-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}
@media (max-width: 992px) {
  body.page-hospitals .hospital-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  body.page-hospitals .hospital-grid {
    grid-template-columns: 1fr;
  }
}
body.page-hospitals .hospital-card {
  background: #fff;
  border-radius: var(--card-radius);
  border: 1px solid #E5E9EC;
  overflow: hidden;
  transition: all 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
body.page-hospitals .hospital-card:hover {
  border-color: #4BC6CA;
  box-shadow: 0 8px 24px rgba(75, 198, 202, 0.12);
  transform: translateY(-4px);
  color: inherit;
}
body.page-hospitals .hospital-card .img {
  height: 200px;
  background: linear-gradient(135deg, #C4EBED, #4BC6CA);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
body.page-hospitals .hospital-card .img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
body.page-hospitals .hospital-card .img svg {
  width: 64px;
  height: 64px;
  color: #fff;
  opacity: 0.8;
}
body.page-hospitals .hospital-card .img .country {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.95);
  color: #0F1F2A;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  z-index: 2;
}
body.page-hospitals .hospital-card .body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
body.page-hospitals .hospital-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0F1F2A;
  margin-bottom: 8px;
}
body.page-hospitals .hospital-card .brief {
  font-size: 13px;
  color: #5A6B7A;
  line-height: 1.6;
  margin-bottom: 12px;
  min-height: 42px;
}
body.page-hospitals .hospital-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
body.page-hospitals .hospital-card .tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 4px;
  border: 1px solid #4BC6CA;
  color: #4BC6CA;
  font-weight: 500;
}
body.page-hospitals .hospital-card .tag.success {
  border-color: #2E7D5A;
  color: #2E7D5A;
}
body.page-hospitals .hospital-card .tag.muted {
  border-color: #E5E9EC;
  color: #5A6B7A;
}
body.page-hospitals .hospital-card .address {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #8C9AA8;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #F1F4F6;
}
body.page-hospitals .hospital-card .address svg {
  width: 14px;
  height: 14px;
  color: #4BC6CA;
  flex-shrink: 0;
}
body.page-hospitals .hospital-card .address span {
  overflow: hidden;
  text-overflow: ellipsis;
}
body.page-hospitals .pagination-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
body.page-hospitals .empty-state {
  text-align: center;
  padding: 64px 16px;
}
body.page-hospitals .empty-state .empty-text {
  color: #8C9AA8;
  margin-top: 16px;
  font-size: 14px;
}

.sub-nav {
  position: sticky;
  top: 132px;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid #E5E9EC;
  margin-bottom: 32px;
}
.sub-nav .container {
  max-width: 1200px;
  padding: 0 24px;
}

.sub-nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 56px;
  overflow-x: auto;
  scrollbar-width: none;
}
.sub-nav-inner::-webkit-scrollbar {
  display: none;
}

.sub-nav-link {
  font-size: 15px;
  font-weight: 500;
  color: #5A6B7A;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  padding: 8px 0;
  transition: color 200ms;
}
.sub-nav-link:hover {
  color: #4BC6CA;
}
.sub-nav-link.active {
  color: #0F8A8E;
  font-weight: 600;
}
.sub-nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: #4BC6CA;
}

.sub-nav-counter {
  font-size: 12px;
  color: #8C9AA8;
  background: #FAFBFC;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 6px;
}

body.page-hospital-detail {
  --card-radius: 16px;
}
body.page-hospital-detail .section {
  padding: 96px 0;
}
body.page-hospital-detail .section.soft {
  background: #FAFBFC;
}
body.page-hospital-detail .page-head-detail {
  padding: 64px 0 48px;
  background: linear-gradient(180deg, #fff 0%, #E6F7F8 100%);
  position: relative;
  overflow: hidden;
}
body.page-hospital-detail .page-head-detail::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, #C4EBED 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}
body.page-hospital-detail .page-head-detail .container {
  position: relative;
  z-index: 1;
}
body.page-hospital-detail .page-head-detail .breadcrumb {
  font-size: 13px;
  color: #8C9AA8;
  margin-bottom: 16px;
}
body.page-hospital-detail .page-head-detail .breadcrumb a {
  color: #8C9AA8;
  text-decoration: none;
  transition: color 200ms;
}
body.page-hospital-detail .page-head-detail .breadcrumb a:hover {
  color: #4BC6CA;
}
body.page-hospital-detail .page-head-detail .breadcrumb .sep {
  margin: 0 8px;
  opacity: 0.5;
}
body.page-hospital-detail .page-head-detail h1 {
  font-size: 40px;
  font-weight: 700;
  color: #0F1F2A;
  line-height: 1.2;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  body.page-hospital-detail .page-head-detail h1 {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  body.page-hospital-detail .page-head-detail h1 {
    font-size: 26px;
  }
}
body.page-hospital-detail .page-head-detail .meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
body.page-hospital-detail .page-head-detail .meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.9);
  color: #5A6B7A;
  border: 1px solid #E5E9EC;
  line-height: 1;
}
body.page-hospital-detail .page-head-detail .meta-tag svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
body.page-hospital-detail .page-head-detail .meta-tag.primary {
  color: #0F8A8E;
  border-color: #4BC6CA;
  background: rgba(255, 255, 255, 0.95);
}
body.page-hospital-detail .page-head-detail .meta-tag.success {
  color: #2E7D5A;
  border-color: #2E7D5A;
  background: #E8F3ED;
}
body.page-hospital-detail .page-head-detail .meta-tag.success svg {
  color: #2E7D5A;
}
body.page-hospital-detail .hosp-hero {
  background: #fff;
  padding: 64px 0;
}
body.page-hospital-detail .hosp-hero .container {
  max-width: 1200px;
}
body.page-hospital-detail .hosp-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 992px) {
  body.page-hospital-detail .hosp-hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
body.page-hospital-detail .hosp-hero-text h2 {
  font-size: 26px;
  font-weight: 700;
  color: #0F1F2A;
  line-height: 1.4;
  margin-bottom: 20px;
}
body.page-hospital-detail .hosp-hero-text .desc {
  font-size: 16px;
  color: #5A6B7A;
  line-height: 1.9;
  margin-bottom: 32px;
}
body.page-hospital-detail .hosp-hero-text .actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
body.page-hospital-detail .hosp-hero-img {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #E6F7F8, #C4EBED);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--card-radius);
}
body.page-hospital-detail .hosp-hero-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.page-hospital-detail .hosp-hero-img svg {
  width: 80px;
  height: 80px;
  color: #4BC6CA;
  opacity: 0.3;
}
body.page-hospital-detail .basic-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 992px) {
  body.page-hospital-detail .basic-info {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  body.page-hospital-detail .basic-info {
    grid-template-columns: 1fr;
  }
}
body.page-hospital-detail .info-card {
  background: #fff;
  border: 1px solid #E5E9EC;
  border-radius: var(--card-radius);
  padding: 24px;
  transition: all 240ms;
}
body.page-hospital-detail .info-card:hover {
  border-color: #4BC6CA;
  transform: translateY(-2px);
}
body.page-hospital-detail .info-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #E6F7F8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
body.page-hospital-detail .info-card .icon svg {
  width: 22px;
  height: 22px;
  color: #4BC6CA;
}
body.page-hospital-detail .info-card .label {
  font-size: 12px;
  color: #8C9AA8;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
body.page-hospital-detail .info-card .value {
  font-size: 15px;
  font-weight: 600;
  color: #0F1F2A;
  line-height: 1.4;
}
body.page-hospital-detail .ins-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
}
body.page-hospital-detail .ins-badge svg {
  width: 14px;
  height: 14px;
}
body.page-hospital-detail .ins-badge.full {
  background: #E8F3ED;
  color: #2E7D5A;
}
body.page-hospital-detail .ins-badge.partial {
  background: #FDF4E3;
  color: #D97706;
}
body.page-hospital-detail .ins-badge.none {
  background: #E5E9EC;
  color: #8C9AA8;
}
body.page-hospital-detail .section-head {
  margin-bottom: 32px;
}
body.page-hospital-detail .section-head .eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: #4BC6CA;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
body.page-hospital-detail .section-head h2 {
  font-size: 28px;
  font-weight: 700;
  color: #0F1F2A;
  line-height: 1.2;
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
  margin: 0;
}
body.page-hospital-detail .section-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 2px;
  background: #4BC6CA;
}
body.page-hospital-detail .section-head p {
  font-size: 15px;
  color: #5A6B7A;
  line-height: 1.6;
  margin: 12px 0 0;
  max-width: 720px;
}
body.page-hospital-detail .section-head.row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
}
body.page-hospital-detail .section-head.row .left {
  min-width: 0;
}
body.page-hospital-detail .section-head.row > .text-link {
  justify-self: end;
}
@media (max-width: 576px) {
  body.page-hospital-detail .section-head.row {
    grid-template-columns: 1fr;
  }
  body.page-hospital-detail .section-head.row > .text-link {
    justify-self: start;
  }
}
body.page-hospital-detail .text-link {
  font-size: 14px;
  font-weight: 500;
  color: #4BC6CA;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: color 200ms;
}
body.page-hospital-detail .text-link::after {
  content: " →";
}
body.page-hospital-detail .text-link:hover {
  color: #0F8A8E;
}
body.page-hospital-detail .section.alt {
  background: #FAFBFC;
}
body.page-hospital-detail .intro-block {
  background: #fff;
  font-size: 15px;
  line-height: 1.9;
  color: #5A6B7A;
}
body.page-hospital-detail .intro-block p {
  margin-bottom: 16px;
}
body.page-hospital-detail .intro-block strong {
  color: #0F1F2A;
  font-weight: 600;
}
body.page-hospital-detail .intro-block .content {
  color: #5A6B7A;
  line-height: 1.9;
  font-size: 15px;
}
body.page-hospital-detail .intro-block .content p {
  margin-bottom: 16px;
}
body.page-hospital-detail .intro-block .content strong {
  color: #0F1F2A;
  font-weight: 600;
}
body.page-hospital-detail .intro-block .meta {
  margin-top: 24px;
  padding: 20px 24px;
  background: #FAFBFC;
  border-left: 4px solid #4BC6CA;
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  color: #5A6B7A;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
body.page-hospital-detail .intro-block .meta strong {
  color: #0F8A8E;
  margin-right: 4px;
}
body.page-hospital-detail .dept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 992px) {
  body.page-hospital-detail .dept-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  body.page-hospital-detail .dept-grid {
    grid-template-columns: 1fr;
  }
}
body.page-hospital-detail .dept-card {
  background: #fff;
  border: 1px solid #E5E9EC;
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: all 240ms;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
body.page-hospital-detail .dept-card:hover {
  border-color: #4BC6CA;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(75, 198, 202, 0.1);
  color: inherit;
}
body.page-hospital-detail .dept-card .img {
  aspect-ratio: 5/3;
  min-height: 200px;
  max-height: 240px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #E6F7F8, #C4EBED);
}
body.page-hospital-detail .dept-card .img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
body.page-hospital-detail .dept-card .img svg {
  width: 48px;
  height: 48px;
  color: #fff;
  opacity: 0.9;
}
body.page-hospital-detail .dept-card .img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  height: 100%;
}
body.page-hospital-detail .dept-card .img-letter {
  font-size: 56px;
  font-weight: 700;
  color: #0F8A8E;
  line-height: 1;
  letter-spacing: -0.02em;
  opacity: 0.85;
}
body.page-hospital-detail .dept-card .img-icon {
  width: 32px;
  height: 32px;
  color: #4BC6CA;
  opacity: 0.55;
}
body.page-hospital-detail .dept-card .body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
body.page-hospital-detail .dept-card h4 {
  font-size: 17px;
  font-weight: 600;
  color: #0F1F2A;
  margin-bottom: 6px;
}
body.page-hospital-detail .dept-card .desc {
  font-size: 13px;
  color: #5A6B7A;
  line-height: 1.6;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 42px;
}
body.page-hospital-detail .dept-card .desc.muted {
  color: #8C9AA8;
  font-style: italic;
}
body.page-hospital-detail .dept-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
body.page-hospital-detail .dept-card .tag {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  background: #E6F7F8;
  color: #0F8A8E;
  font-weight: 500;
}
body.page-hospital-detail .dept-card .arrow {
  margin-top: auto;
  font-size: 13px;
  font-weight: 500;
  color: #4BC6CA;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
body.page-hospital-detail .doctor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 992px) {
  body.page-hospital-detail .doctor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  body.page-hospital-detail .doctor-grid {
    grid-template-columns: 1fr;
  }
}
body.page-hospital-detail .doctor-card {
  background: #fff;
  border: 1px solid #E5E9EC;
  border-radius: var(--card-radius);
  padding: 20px;
  text-align: center;
  transition: all 240ms;
  text-decoration: none;
  color: inherit;
}
body.page-hospital-detail .doctor-card:hover {
  border-color: #4BC6CA;
  transform: translateY(-2px);
  color: inherit;
}
body.page-hospital-detail .doctor-card .avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #E6F7F8;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
body.page-hospital-detail .doctor-card .avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.page-hospital-detail .doctor-card .avatar svg {
  width: 32px;
  height: 32px;
  color: #4BC6CA;
}
body.page-hospital-detail .doctor-card h5 {
  font-size: 15px;
  font-weight: 600;
  color: #0F1F2A;
  margin-bottom: 2px;
}
body.page-hospital-detail .doctor-card .title {
  font-size: 12px;
  color: #8C9AA8;
  margin: 4px 0;
}
body.page-hospital-detail .doctor-card .dept {
  font-size: 12px;
  color: #4BC6CA;
  font-weight: 500;
  margin-bottom: 8px;
}
body.page-hospital-detail .doctor-card .expertise {
  font-size: 12px;
  color: #5A6B7A;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 36px;
}
body.page-hospital-detail .empty-mini {
  grid-column: 1/-1;
  text-align: center;
  padding: 48px 16px;
  color: #8C9AA8;
  font-size: 14px;
  background: #FAFBFC;
  border: 1px dashed #E5E9EC;
  border-radius: var(--card-radius);
}

body.page-doctors {
  --card-radius: 12px;
  --grid-gap: 24px;
}
body.page-doctors .page-head-listing {
  padding: 80px 0 64px;
  background: linear-gradient(180deg, #fff 0%, #E6F7F8 100%);
  position: relative;
  overflow: hidden;
}
body.page-doctors .page-head-listing::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, #C4EBED 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}
body.page-doctors .page-head-listing .container {
  position: relative;
  z-index: 1;
}
body.page-doctors .page-head-listing .breadcrumb-mini {
  font-size: 13px;
  color: #8C9AA8;
  margin-bottom: 16px;
}
body.page-doctors .page-head-listing .breadcrumb-mini a {
  color: #8C9AA8;
  text-decoration: none;
  transition: color 200ms;
}
body.page-doctors .page-head-listing .breadcrumb-mini a:hover {
  color: #4BC6CA;
}
body.page-doctors .page-head-listing .breadcrumb-mini .sep {
  margin: 0 8px;
  opacity: 0.5;
}
body.page-doctors .page-head-listing h1 {
  font-size: 44px;
  font-weight: 700;
  color: #0F1F2A;
  line-height: 1.15;
  margin-bottom: 16px;
}
body.page-doctors .page-head-listing h1 .accent {
  color: #0F8A8E;
}
@media (max-width: 992px) {
  body.page-doctors .page-head-listing h1 {
    font-size: 36px;
  }
}
@media (max-width: 576px) {
  body.page-doctors .page-head-listing h1 {
    font-size: 28px;
  }
}
body.page-doctors .page-head-listing .subtitle {
  font-size: 18px;
  color: #5A6B7A;
  line-height: 1.6;
  max-width: 720px;
}
body.page-doctors .filter-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 24px;
  background: #fff;
  border: 1px solid #E5E9EC;
  border-radius: var(--card-radius);
  margin: 40px 0;
}
body.page-doctors .filter-bar .filter-group {
  display: flex;
  align-items: center;
  gap: 12px;
}
body.page-doctors .filter-bar .filter-group .label {
  font-size: 14px;
  font-weight: 600;
  color: #0F1F2A;
  white-space: nowrap;
}
body.page-doctors .filter-bar .filter-select {
  height: 36px;
  padding: 0 32px 0 12px;
  border: 1px solid #E5E9EC;
  border-radius: 6px;
  background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M3 4.5L6 7.5L9 4.5' stroke='%235A6B7A' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>") no-repeat right 10px center;
  color: #0F1F2A;
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  min-width: 200px;
}
body.page-doctors .filter-bar .filter-select:focus {
  outline: none;
  border-color: #4BC6CA;
}
body.page-doctors .filter-bar .filter-search {
  flex: 1;
  min-width: 220px;
  max-width: 320px;
}
body.page-doctors .filter-bar .filter-search .search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
body.page-doctors .filter-bar .filter-search .filter-search-input {
  width: 100%;
  height: 36px;
  padding: 0 44px 0 14px;
  border: 1px solid #E5E9EC;
  border-radius: 999px;
  background: #fff;
  color: #0F1F2A;
  font-size: 13px;
  font-family: inherit;
}
body.page-doctors .filter-bar .filter-search .filter-search-input::-moz-placeholder {
  color: #8C9AA8;
}
body.page-doctors .filter-bar .filter-search .filter-search-input::placeholder {
  color: #8C9AA8;
}
body.page-doctors .filter-bar .filter-search .filter-search-input:focus {
  outline: none;
  border-color: #4BC6CA;
  box-shadow: 0 0 0 3px rgba(75, 198, 202, 0.1);
}
body.page-doctors .filter-bar .filter-search .filter-search-btn {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: #8C9AA8;
  cursor: pointer;
  transition: color 200ms, background 200ms;
}
body.page-doctors .filter-bar .filter-search .filter-search-btn i {
  font-size: 15px;
}
body.page-doctors .filter-bar .filter-search .filter-search-btn:hover {
  color: #4BC6CA;
  background: #E6F7F8;
}
@media (max-width: 992px) {
  body.page-doctors .filter-bar {
    gap: 16px;
  }
}
@media (max-width: 576px) {
  body.page-doctors .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }
  body.page-doctors .filter-bar .filter-group {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  body.page-doctors .filter-bar .filter-group .filter-select {
    width: 100%;
    min-width: 0;
  }
  body.page-doctors .filter-bar .filter-group .filter-search {
    max-width: none;
  }
}
body.page-doctors .doctor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gap);
}
@media (max-width: 992px) {
  body.page-doctors .doctor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  body.page-doctors .doctor-grid {
    grid-template-columns: 1fr;
  }
}
body.page-doctors .doctor-card {
  background: #fff;
  border-radius: var(--card-radius);
  border: 1px solid #E5E9EC;
  padding: 32px 24px;
  text-align: center;
  transition: all 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
body.page-doctors .doctor-card:hover {
  box-shadow: 0 8px 24px rgba(15, 31, 42, 0.06);
  transform: translateY(-4px);
  color: inherit;
}
body.page-doctors .doctor-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #E6F7F8;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
body.page-doctors .doctor-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.page-doctors .doctor-avatar svg {
  width: 40px;
  height: 40px;
  color: #4BC6CA;
}
body.page-doctors .doctor-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0F1F2A;
  margin-bottom: 6px;
}
body.page-doctors .doctor-card .title {
  font-size: 13px;
  color: #8C9AA8;
  margin-bottom: 8px;
}
body.page-doctors .doctor-card .dept {
  font-size: 13px;
  color: #4BC6CA;
  font-weight: 500;
  margin-bottom: 12px;
  min-height: 18px;
}
body.page-doctors .doctor-card .expertise {
  font-size: 12px;
  color: #5A6B7A;
  line-height: 1.6;
  margin-bottom: 16px;
  min-height: 36px;
  flex: 1;
}
body.page-doctors .doctor-card .btn {
  margin-top: auto;
}
body.page-doctors .btn-block {
  display: flex;
  width: 100%;
}
body.page-doctors .pagination-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
body.page-doctors .empty-state {
  text-align: center;
  padding: 64px 16px;
}
body.page-doctors .empty-state .empty-text {
  color: #8C9AA8;
  margin-top: 16px;
  font-size: 14px;
}

body.page-doctor-detail {
  --card-radius: 16px;
}
body.page-doctor-detail .section {
  padding: 96px 0;
}
body.page-doctor-detail .section.soft {
  background: #FAFBFC;
}
body.page-doctor-detail .doctor-page-head {
  padding: 64px 0 48px;
  background: linear-gradient(180deg, #fff 0%, #E6F7F8 100%);
  position: relative;
  overflow: hidden;
}
body.page-doctor-detail .doctor-page-head::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, #C4EBED 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}
body.page-doctor-detail .doctor-page-head .container {
  position: relative;
  z-index: 1;
}
body.page-doctor-detail .doctor-page-head .breadcrumb {
  font-size: 13px;
  color: #8C9AA8;
  margin-bottom: 16px;
}
body.page-doctor-detail .doctor-page-head .breadcrumb a {
  color: #8C9AA8;
  text-decoration: none;
  transition: color 200ms;
}
body.page-doctor-detail .doctor-page-head .breadcrumb a:hover {
  color: #4BC6CA;
}
body.page-doctor-detail .doctor-page-head .breadcrumb .sep {
  margin: 0 8px;
  opacity: 0.5;
}
body.page-doctor-detail .doctor-page-head h1 {
  font-size: 40px;
  font-weight: 700;
  color: #0F1F2A;
  line-height: 1.2;
  margin-bottom: 8px;
}
body.page-doctor-detail .doctor-page-head h1 .accent {
  color: #0F8A8E;
}
@media (max-width: 992px) {
  body.page-doctor-detail .doctor-page-head h1 {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  body.page-doctor-detail .doctor-page-head h1 {
    font-size: 26px;
  }
}
body.page-doctor-detail .doctor-page-head .title-info {
  font-size: 16px;
  color: #5A6B7A;
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
body.page-doctor-detail .doctor-page-head .title-info .divider {
  color: #8C9AA8;
  opacity: 0.5;
}
body.page-doctor-detail .doctor-page-head .title-info .hospital {
  color: #4BC6CA;
  font-weight: 500;
}
body.page-doctor-detail .doc-hero {
  background: #fff;
  padding: 56px 0;
  border-bottom: 1px solid #F1F4F6;
}
body.page-doctor-detail .doc-hero-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 992px) {
  body.page-doctor-detail .doc-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
body.page-doctor-detail .doc-hero-inner > div:first-child h2 {
  font-size: 22px;
  font-weight: 700;
  color: #0F1F2A;
  line-height: 1.4;
  margin-bottom: 12px;
}
body.page-doctor-detail .doc-hero-inner > div:first-child .expertise {
  font-size: 14px;
  color: #5A6B7A;
  line-height: 1.7;
  margin-bottom: 24px;
  padding-left: 14px;
  border-left: 3px solid #4BC6CA;
}
body.page-doctor-detail .doc-hero-inner > div:first-child .actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
body.page-doctor-detail .doc-hero .img {
  height: 480px;
  border-radius: var(--card-radius);
  background: linear-gradient(135deg, #E6F7F8, #C4EBED);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 992px) {
  body.page-doctor-detail .doc-hero .img {
    height: 380px;
  }
}
body.page-doctor-detail .photo-placeholder {
  width: 100%;
  height: 100%;
  border-radius: var(--card-radius);
  background: linear-gradient(135deg, #4BC6CA, #0F8A8E);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 64px rgba(75, 198, 202, 0.3);
  position: relative;
  overflow: hidden;
}
body.page-doctor-detail .photo-placeholder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.page-doctor-detail .photo-placeholder svg {
  width: 120px;
  height: 120px;
  color: #fff;
  opacity: 0.85;
}
@media (max-width: 992px) {
  body.page-doctor-detail .photo-placeholder {
    width: 100%;
    height: 100%;
  }
}
body.page-doctor-detail .photo-photo {
  width: 100%;
  height: 100%;
  border-radius: var(--card-radius);
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
body.page-doctor-detail .doc-hero .img .photo-label {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  color: #8C9AA8;
}
body.page-doctor-detail .basic-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 992px) {
  body.page-doctor-detail .basic-info {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  body.page-doctor-detail .basic-info {
    grid-template-columns: 1fr;
  }
}
body.page-doctor-detail .info-card {
  background: #fff;
  border: 1px solid #E5E9EC;
  border-radius: var(--card-radius);
  padding: 24px;
  transition: all 240ms;
}
body.page-doctor-detail .info-card:hover {
  border-color: #4BC6CA;
  transform: translateY(-2px);
}
body.page-doctor-detail .info-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #E6F7F8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
body.page-doctor-detail .info-card .icon svg {
  width: 22px;
  height: 22px;
  color: #4BC6CA;
}
body.page-doctor-detail .info-card .label {
  font-size: 12px;
  color: #8C9AA8;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}
body.page-doctor-detail .info-card .value {
  font-size: 15px;
  font-weight: 600;
  color: #0F1F2A;
  line-height: 1.4;
}
body.page-doctor-detail .detail-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
}
@media (max-width: 992px) {
  body.page-doctor-detail .detail-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
body.page-doctor-detail .detail-side {
  position: sticky;
  top: 120px;
  align-self: start;
}
body.page-doctor-detail .detail-side h5 {
  font-size: 13px;
  font-weight: 600;
  color: #8C9AA8;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
body.page-doctor-detail .detail-side ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
body.page-doctor-detail .detail-side li {
  padding: 12px 16px;
  font-size: 14px;
  color: #5A6B7A;
  border-left: 2px solid #E5E9EC;
  cursor: pointer;
  transition: all 200ms;
  margin-bottom: 4px;
}
body.page-doctor-detail .detail-side li:hover {
  color: #4BC6CA;
  border-color: #C4EBED;
}
body.page-doctor-detail .detail-side li.active {
  color: #0F8A8E;
  font-weight: 600;
  border-color: #4BC6CA;
  background: #E6F7F8;
  border-radius: 0 6px 6px 0;
}
body.page-doctor-detail .detail-side li a {
  color: inherit;
  text-decoration: none;
  display: block;
}
@media (max-width: 992px) {
  body.page-doctor-detail .detail-side {
    position: static;
  }
}
body.page-doctor-detail .detail-content h3 {
  font-size: 26px;
  font-weight: 700;
  color: #0F1F2A;
  margin-bottom: 20px;
  padding-top: 24px;
  border-top: 1px solid #F1F4F6;
}
body.page-doctor-detail .detail-content h3:first-child {
  border-top: none;
  padding-top: 0;
}
body.page-doctor-detail .detail-content p {
  font-size: 15px;
  color: #5A6B7A;
  line-height: 1.9;
  margin-bottom: 16px;
}
body.page-doctor-detail .detail-content .content {
  color: #5A6B7A;
  line-height: 1.9;
  font-size: 15px;
}
body.page-doctor-detail .detail-content .content p {
  margin-bottom: 16px;
}
body.page-doctor-detail .detail-content .content strong {
  color: #0F1F2A;
  font-weight: 600;
}
body.page-doctor-detail .detail-content .lead {
  font-size: 17px;
  color: #0F1F2A;
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 500;
  padding: 20px 24px;
  background: #E6F7F8;
  border-left: 4px solid #4BC6CA;
  border-radius: 0 8px 8px 0;
}
body.page-doctor-detail .schedule-wrap {
  background: #fff;
  border-radius: var(--card-radius);
  border: 1px solid #E5E9EC;
  overflow: hidden;
}
body.page-doctor-detail .schedule-meta {
  padding: 20px 32px;
  background: #FAFBFC;
  border-bottom: 1px solid #E5E9EC;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
body.page-doctor-detail .schedule-meta .info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #5A6B7A;
}
body.page-doctor-detail .schedule-meta .info svg {
  color: #4BC6CA;
  flex-shrink: 0;
}
body.page-doctor-detail .schedule-meta .info strong {
  color: #0F1F2A;
  font-weight: 600;
}
body.page-doctor-detail .schedule-meta .legend {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  color: #8C9AA8;
}
body.page-doctor-detail .schedule-meta .legend .item {
  display: flex;
  align-items: center;
  gap: 6px;
}
body.page-doctor-detail .schedule-meta .legend .dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  display: inline-block;
}
body.page-doctor-detail .schedule-meta .legend .dot.on {
  background: #4BC6CA;
}
body.page-doctor-detail .schedule-meta .legend .dot.off {
  background: #E5E9EC;
}
body.page-doctor-detail .schedule-table {
  width: 100%;
  border-collapse: collapse;
}
body.page-doctor-detail .schedule-table th {
  padding: 16px;
  font-size: 13px;
  font-weight: 600;
  color: #5A6B7A;
  text-align: center;
  background: #FAFBFC;
  border-bottom: 1px solid #E5E9EC;
}
body.page-doctor-detail .schedule-table th small {
  font-weight: 400;
  opacity: 0.7;
}
body.page-doctor-detail .schedule-table td {
  padding: 16px;
  text-align: center;
  border-bottom: 1px solid #F1F4F6;
  font-size: 14px;
  color: #0F1F2A;
}
body.page-doctor-detail .schedule-table tr:last-child td {
  border-bottom: none;
}
body.page-doctor-detail .schedule-table .day-cell {
  font-weight: 600;
  color: #0F1F2A;
  background: #FAFBFC;
  width: 120px;
}
body.page-doctor-detail .schedule-table .slot {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  min-width: 64px;
}
body.page-doctor-detail .schedule-table .slot.on {
  background: #E6F7F8;
  color: #0F8A8E;
  border: 1px solid #C4EBED;
  font-weight: 600;
}
body.page-doctor-detail .schedule-table .slot.off {
  color: #8C9AA8;
  font-size: 13px;
}
body.page-doctor-detail .schedule-table .slot-time {
  margin-top: 6px;
  font-size: 11px;
  color: #5A6B7A;
  font-weight: 400;
  letter-spacing: 0.02em;
}
body.page-doctor-detail .schedule-note {
  padding: 16px 32px;
  background: #FAFBFC;
  border-top: 1px solid #E5E9EC;
  font-size: 12px;
  color: #8C9AA8;
  line-height: 1.7;
}
body.page-doctor-detail .schedule-note strong {
  color: #0F1F2A;
}
@media (max-width: 992px) {
  body.page-doctor-detail .schedule-meta {
    padding: 16px 20px;
  }
  body.page-doctor-detail .schedule-table th, body.page-doctor-detail .schedule-table td {
    padding: 10px 6px;
    font-size: 12px;
  }
  body.page-doctor-detail .schedule-table .day-cell {
    width: 80px;
  }
  body.page-doctor-detail .schedule-table .slot {
    font-size: 11px;
    padding: 4px 6px;
    min-width: 0;
  }
}
@media (max-width: 576px) {
  body.page-doctor-detail .schedule-table,
  body.page-doctor-detail .schedule-table thead,
  body.page-doctor-detail .schedule-table tbody,
  body.page-doctor-detail .schedule-table tr,
  body.page-doctor-detail .schedule-table td,
  body.page-doctor-detail .schedule-table th {
    display: block;
  }
  body.page-doctor-detail .schedule-table thead {
    display: none;
  }
  body.page-doctor-detail .schedule-table tr {
    margin-bottom: 12px;
    background: #fff;
    border: 1px solid #E5E9EC;
    border-radius: 12px;
    padding: 16px;
  }
  body.page-doctor-detail .schedule-table .day-cell {
    width: 100%;
    text-align: left;
    background: transparent;
    padding: 0 0 12px;
    border-bottom: 1px solid #F1F4F6;
    margin-bottom: 12px;
  }
  body.page-doctor-detail .schedule-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border: none;
    text-align: left;
  }
  body.page-doctor-detail .schedule-table td::before {
    content: attr(data-label);
    font-size: 12px;
    color: #8C9AA8;
    font-weight: 500;
  }
  body.page-doctor-detail .schedule-table .slot {
    min-width: 0;
  }
}
body.page-doctor-detail .doctor-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 992px) {
  body.page-doctor-detail .doctor-mini-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  body.page-doctor-detail .doctor-mini-grid {
    grid-template-columns: 1fr;
  }
}
body.page-doctor-detail .doctor-mini {
  background: #fff;
  border: 1px solid #E5E9EC;
  border-radius: var(--card-radius);
  padding: 24px;
  text-align: center;
  transition: all 240ms;
  text-decoration: none;
  color: inherit;
}
body.page-doctor-detail .doctor-mini:hover {
  box-shadow: 0 8px 24px rgba(15, 31, 42, 0.06);
  transform: translateY(-2px);
  color: inherit;
}
body.page-doctor-detail .doctor-mini .avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #E6F7F8;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
body.page-doctor-detail .doctor-mini .avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.page-doctor-detail .doctor-mini .avatar svg {
  width: 36px;
  height: 36px;
  color: #4BC6CA;
}
body.page-doctor-detail .doctor-mini h5 {
  font-size: 15px;
  font-weight: 600;
  color: #0F1F2A;
  margin-bottom: 2px;
}
body.page-doctor-detail .doctor-mini .title {
  font-size: 12px;
  color: #8C9AA8;
  margin: 4px 0;
}
body.page-doctor-detail .doctor-mini .dept {
  font-size: 12px;
  color: #4BC6CA;
  font-weight: 500;
}

body.page-hospital-departments,
body.page-hospital-doctors {
  --card-radius: 16px;
}
body.page-hospital-departments .page-head-dept-list,
body.page-hospital-doctors .page-head-dept-list {
  padding: 48px 0 24px;
  background: linear-gradient(180deg, #fff 0%, #E6F7F8 100%);
  position: relative;
  overflow: hidden;
}
body.page-hospital-departments .page-head-dept-list::before,
body.page-hospital-doctors .page-head-dept-list::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, #C4EBED 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}
body.page-hospital-departments .page-head-dept-list .container,
body.page-hospital-doctors .page-head-dept-list .container {
  position: relative;
  z-index: 1;
}
body.page-hospital-departments .page-head-dept-list .breadcrumb,
body.page-hospital-doctors .page-head-dept-list .breadcrumb {
  font-size: 13px;
  color: #8C9AA8;
  margin-bottom: 16px;
}
body.page-hospital-departments .page-head-dept-list .breadcrumb a,
body.page-hospital-doctors .page-head-dept-list .breadcrumb a {
  color: #8C9AA8;
  text-decoration: none;
  transition: color 200ms;
}
body.page-hospital-departments .page-head-dept-list .breadcrumb a:hover,
body.page-hospital-doctors .page-head-dept-list .breadcrumb a:hover {
  color: #4BC6CA;
}
body.page-hospital-departments .page-head-dept-list .breadcrumb .sep,
body.page-hospital-doctors .page-head-dept-list .breadcrumb .sep {
  margin: 0 8px;
  opacity: 0.5;
}
body.page-hospital-departments .page-head-dept-list h1,
body.page-hospital-doctors .page-head-dept-list h1 {
  font-size: 40px;
  font-weight: 700;
  color: #0F1F2A;
  line-height: 1.2;
  margin-bottom: 16px;
}
body.page-hospital-departments .page-head-dept-list h1 .accent,
body.page-hospital-doctors .page-head-dept-list h1 .accent {
  color: #0F8A8E;
}
@media (max-width: 992px) {
  body.page-hospital-departments .page-head-dept-list h1,
  body.page-hospital-doctors .page-head-dept-list h1 {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  body.page-hospital-departments .page-head-dept-list h1,
  body.page-hospital-doctors .page-head-dept-list h1 {
    font-size: 26px;
  }
}
body.page-hospital-departments .page-head-dept-list .subtitle,
body.page-hospital-doctors .page-head-dept-list .subtitle {
  font-size: 17px;
  color: #5A6B7A;
  line-height: 1.7;
  max-width: 720px;
}
body.page-hospital-departments .section-dept-list,
body.page-hospital-doctors .section-dept-list {
  padding: 24px 0 64px;
}
body.page-hospital-departments .hospital-header,
body.page-hospital-doctors .hospital-header {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px;
  background: #fff;
  border: 1px solid #E5E9EC;
  border-radius: var(--card-radius);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
body.page-hospital-departments .hospital-logo,
body.page-hospital-doctors .hospital-logo {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  background: linear-gradient(135deg, #4BC6CA 0%, #0F8A8E 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
body.page-hospital-departments .hospital-info,
body.page-hospital-doctors .hospital-info {
  flex: 1;
  min-width: 200px;
}
body.page-hospital-departments .hospital-info h3,
body.page-hospital-doctors .hospital-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0F1F2A;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
body.page-hospital-departments .hospital-info .level,
body.page-hospital-doctors .hospital-info .level {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 4px;
  background: #E6F7F8;
  color: #0F8A8E;
}
body.page-hospital-departments .hospital-info .city,
body.page-hospital-doctors .hospital-info .city {
  font-size: 12px;
  color: #8C9AA8;
}
body.page-hospital-departments .hospital-info .city svg,
body.page-hospital-doctors .hospital-info .city svg {
  width: 11px;
  height: 11px;
  vertical-align: middle;
  margin-right: 2px;
  color: #4BC6CA;
}
body.page-hospital-departments .dept-grid,
body.page-hospital-doctors .dept-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 992px) {
  body.page-hospital-departments .dept-grid,
  body.page-hospital-doctors .dept-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  body.page-hospital-departments .dept-grid,
  body.page-hospital-doctors .dept-grid {
    grid-template-columns: 1fr;
  }
}
body.page-hospital-departments .dept-card,
body.page-hospital-doctors .dept-card {
  background: #fff;
  border: 1px solid #E5E9EC;
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: all 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}
body.page-hospital-departments .dept-card:hover,
body.page-hospital-doctors .dept-card:hover {
  border-color: #4BC6CA;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(75, 198, 202, 0.1);
  color: inherit;
}
body.page-hospital-departments .dept-card .img,
body.page-hospital-doctors .dept-card .img {
  aspect-ratio: 5/3;
  min-height: 200px;
  max-height: 240px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, #E6F7F8, #C4EBED);
}
body.page-hospital-departments .dept-card .img img,
body.page-hospital-doctors .dept-card .img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
body.page-hospital-departments .dept-card .img .img-placeholder,
body.page-hospital-doctors .dept-card .img .img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
body.page-hospital-departments .dept-card .img .img-letter,
body.page-hospital-doctors .dept-card .img .img-letter {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  opacity: 0.95;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
body.page-hospital-departments .dept-card .img .img-icon,
body.page-hospital-doctors .dept-card .img .img-icon {
  width: 32px;
  height: 32px;
  color: #fff;
  opacity: 0.7;
}
body.page-hospital-departments .dept-card .body,
body.page-hospital-doctors .dept-card .body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
body.page-hospital-departments .dept-card h4,
body.page-hospital-doctors .dept-card h4 {
  font-size: 17px;
  font-weight: 600;
  color: #0F1F2A;
  margin-bottom: 8px;
}
body.page-hospital-departments .dept-card .desc,
body.page-hospital-doctors .dept-card .desc {
  font-size: 13px;
  color: #5A6B7A;
  line-height: 1.6;
  margin-bottom: 12px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 42px;
}
body.page-hospital-departments .dept-card .arrow,
body.page-hospital-doctors .dept-card .arrow {
  font-size: 13px;
  font-weight: 500;
  color: #4BC6CA;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #F1F4F6;
}
body.page-hospital-departments .pagination,
body.page-hospital-doctors .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  flex-wrap: wrap;
}
body.page-hospital-departments .pagination a, body.page-hospital-departments .pagination span,
body.page-hospital-doctors .pagination a,
body.page-hospital-doctors .pagination span {
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #E5E9EC;
  color: #5A6B7A;
  transition: all 200ms;
  text-decoration: none;
}
body.page-hospital-departments .pagination a:hover,
body.page-hospital-doctors .pagination a:hover {
  color: #4BC6CA;
  border-color: #4BC6CA;
}
body.page-hospital-departments .pagination .active,
body.page-hospital-doctors .pagination .active {
  background: #4BC6CA;
  border-color: #4BC6CA;
  color: #fff;
}
body.page-hospital-departments .pagination .disabled,
body.page-hospital-doctors .pagination .disabled {
  background: transparent;
  border: 1px solid #E5E9EC;
  color: #8C9AA8;
  cursor: not-allowed;
  opacity: 0.6;
}
body.page-hospital-departments .pagination .info,
body.page-hospital-doctors .pagination .info {
  color: #8C9AA8;
  font-size: 13px;
  margin: 0 12px;
  background: transparent;
  border: none;
  min-width: 0;
  padding: 0;
  height: auto;
}
body.page-hospital-departments .empty-mini,
body.page-hospital-doctors .empty-mini {
  text-align: center;
  padding: 64px 16px;
  color: #8C9AA8;
  font-size: 14px;
  background: #FAFBFC;
  border: 1px dashed #E5E9EC;
  border-radius: var(--card-radius);
}

.d1 {
  background: linear-gradient(135deg, #4BC6CA 0%, #0F8A8E 100%);
}

.d2 {
  background: linear-gradient(135deg, #EC4899 0%, #BE185D 100%);
}

.d3 {
  background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
}

.d4 {
  background: linear-gradient(135deg, #F472B6 0%, #BE185D 100%);
}

.d5 {
  background: linear-gradient(135deg, #6366F1 0%, #4338CA 100%);
}

.d6 {
  background: linear-gradient(135deg, #06B6D4 0%, #0E7490 100%);
}

.d7 {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.d8 {
  background: linear-gradient(135deg, #10B981 0%, #047857 100%);
}

.d9 {
  background: linear-gradient(135deg, #F43F5E 0%, #BE123C 100%);
}

.d10 {
  background: linear-gradient(135deg, #0EA5E9 0%, #0369A1 100%);
}

.d11 {
  background: linear-gradient(135deg, #14B8A6 0%, #0F766E 100%);
}

.d12 {
  background: linear-gradient(135deg, #A855F7 0%, #7E22CE 100%);
}

body.page-department-detail {
  --card-radius: 16px;
}
body.page-department-detail .section {
  padding: 96px 0;
}
body.page-department-detail .section.dept-tab-pane {
  padding: 64px 0;
}
body.page-department-detail .section.dept-tab-pane:first-of-type {
  padding-top: 56px;
}
body.page-department-detail .section.soft {
  background: #FAFBFC;
}
body.page-department-detail .page-head-dept-detail {
  padding: 64px 0 48px;
  background: linear-gradient(180deg, #fff 0%, #E6F7F8 100%);
  position: relative;
  overflow: hidden;
}
body.page-department-detail .page-head-dept-detail::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, #C4EBED 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}
body.page-department-detail .page-head-dept-detail .container {
  position: relative;
  z-index: 1;
}
body.page-department-detail .page-head-dept-detail .breadcrumb {
  font-size: 13px;
  color: #8C9AA8;
  margin-bottom: 16px;
}
body.page-department-detail .page-head-dept-detail .breadcrumb a {
  color: #8C9AA8;
  text-decoration: none;
  transition: color 200ms;
}
body.page-department-detail .page-head-dept-detail .breadcrumb a:hover {
  color: #4BC6CA;
}
body.page-department-detail .page-head-dept-detail .breadcrumb .sep {
  margin: 0 8px;
  opacity: 0.5;
}
body.page-department-detail .page-head-dept-detail h1 {
  font-size: 40px;
  font-weight: 700;
  color: #0F1F2A;
  line-height: 1.2;
  margin-bottom: 12px;
}
body.page-department-detail .page-head-dept-detail h1 .accent {
  color: #0F8A8E;
}
@media (max-width: 992px) {
  body.page-department-detail .page-head-dept-detail h1 {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  body.page-department-detail .page-head-dept-detail h1 {
    font-size: 26px;
  }
}
body.page-department-detail .page-head-dept-detail .hospital {
  font-size: 16px;
  color: #5A6B7A;
}
body.page-department-detail .page-head-dept-detail .hospital svg {
  width: 14px;
  height: 14px;
  vertical-align: middle;
  margin-right: 4px;
  color: #4BC6CA;
}
body.page-department-detail .page-head-dept-detail .hospital strong {
  color: #4BC6CA;
  font-weight: 600;
}
body.page-department-detail .page-head-dept-detail .text-link-inline {
  color: #4BC6CA;
  text-decoration: none;
}
body.page-department-detail .page-head-dept-detail .text-link-inline:hover {
  color: #0F8A8E;
  text-decoration: underline;
}
body.page-department-detail .dept-hero {
  background: #fff;
  padding: 48px 0 40px;
  border-bottom: 1px solid #F1F4F6;
}
body.page-department-detail .dept-hero-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
  min-height: 360px;
}
@media (max-width: 992px) {
  body.page-department-detail .dept-hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: 0;
  }
}
body.page-department-detail .dept-hero-text h2 {
  font-size: 24px;
  font-weight: 700;
  color: #0F1F2A;
  line-height: 1.4;
  margin-bottom: 12px;
}
body.page-department-detail .dept-hero-text .expertise {
  font-size: 14px;
  color: #5A6B7A;
  line-height: 1.7;
  margin-bottom: 24px;
  padding-left: 14px;
  border-left: 3px solid #4BC6CA;
}
body.page-department-detail .dept-hero-img {
  width: 100%;
  aspect-ratio: 1/1;
  max-width: 500px;
  margin: 0 auto;
  border-radius: var(--card-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 64px rgba(15, 31, 42, 0.1);
  position: relative;
  overflow: hidden;
}
body.page-department-detail .dept-hero-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.page-department-detail .dept-hero-img svg {
  width: 100px;
  height: 100px;
  color: #fff;
  opacity: 0.85;
}
body.page-department-detail .dept-tab-pane {
  scroll-margin-top: 156px;
}
body.page-department-detail .dept-consult-pane {
  background: linear-gradient(180deg, #E6F7F8 0%, #fff 100%);
}
body.page-department-detail .consult-cta {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 48px;
  background: #fff;
  border: 1px solid #E5E9EC;
  border-radius: var(--card-radius);
  box-shadow: 0 12px 40px rgba(15, 31, 42, 0.06);
}
@media (max-width: 992px) {
  body.page-department-detail .consult-cta {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px;
  }
}
body.page-department-detail .consult-cta-text .eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: #4BC6CA;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
body.page-department-detail .consult-cta-text h2 {
  font-size: 28px;
  font-weight: 700;
  color: #0F1F2A;
  line-height: 1.3;
  margin-bottom: 12px;
}
body.page-department-detail .consult-cta-text p {
  font-size: 15px;
  color: #5A6B7A;
  line-height: 1.7;
  margin: 0;
}
body.page-department-detail .consult-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-self: end;
  min-width: 200px;
}
@media (max-width: 992px) {
  body.page-department-detail .consult-cta-actions {
    justify-self: stretch;
    flex-direction: row;
  }
}
@media (max-width: 576px) {
  body.page-department-detail .consult-cta-actions {
    flex-direction: column;
  }
}
body.page-department-detail .consult-cta-actions .btn {
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 200ms;
}
body.page-department-detail .consult-cta-actions .btn-primary {
  background: #4BC6CA;
  color: #fff;
  border: 1px solid #4BC6CA;
}
body.page-department-detail .consult-cta-actions .btn-primary:hover {
  background: #0F8A8E;
  border-color: #0F8A8E;
}
body.page-department-detail .consult-cta-actions .btn-ghost {
  background: transparent;
  color: #0F1F2A;
  border: 1px solid #E5E9EC;
}
body.page-department-detail .consult-cta-actions .btn-ghost:hover {
  border-color: #4BC6CA;
  color: #4BC6CA;
}
body.page-department-detail .detail-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0F1F2A;
  margin-bottom: 20px;
}
body.page-department-detail .detail-content p {
  font-size: 15px;
  color: #5A6B7A;
  line-height: 1.9;
  margin-bottom: 16px;
}
body.page-department-detail .detail-content strong {
  color: #0F1F2A;
  font-weight: 600;
}
body.page-department-detail .detail-content .content {
  color: #5A6B7A;
  line-height: 1.9;
  font-size: 15px;
}
body.page-department-detail .detail-content .content p {
  margin-bottom: 16px;
}
body.page-department-detail .detail-content .content strong {
  color: #0F1F2A;
  font-weight: 600;
}
body.page-department-detail .section-head {
  margin-bottom: 32px;
}
body.page-department-detail .section-head .eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: #4BC6CA;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
body.page-department-detail .section-head h2 {
  font-size: 28px;
  font-weight: 700;
  color: #0F1F2A;
  line-height: 1.2;
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
  margin: 0;
}
body.page-department-detail .section-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 2px;
  background: #4BC6CA;
}
body.page-department-detail .section-head p {
  font-size: 15px;
  color: #5A6B7A;
  line-height: 1.6;
  margin: 12px 0 0;
  max-width: 720px;
}
body.page-department-detail .section-head.row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
}
body.page-department-detail .section-head.row .left {
  min-width: 0;
}
body.page-department-detail .section-head.row > .text-link {
  justify-self: end;
}
@media (max-width: 576px) {
  body.page-department-detail .section-head.row {
    grid-template-columns: 1fr;
  }
  body.page-department-detail .section-head.row > .text-link {
    justify-self: start;
  }
}
body.page-department-detail .text-link {
  font-size: 14px;
  font-weight: 500;
  color: #4BC6CA;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: color 200ms;
}
body.page-department-detail .text-link::after {
  content: " →";
}
body.page-department-detail .text-link:hover {
  color: #0F8A8E;
}
body.page-department-detail .doctor-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 992px) {
  body.page-department-detail .doctor-mini-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  body.page-department-detail .doctor-mini-grid {
    grid-template-columns: 1fr;
  }
}
body.page-department-detail .doctor-mini {
  background: #fff;
  border: 1px solid #E5E9EC;
  border-radius: var(--card-radius);
  padding: 24px;
  text-align: center;
  transition: all 240ms;
  text-decoration: none;
  color: inherit;
  display: block;
}
body.page-department-detail .doctor-mini:hover {
  box-shadow: 0 8px 24px rgba(15, 31, 42, 0.06);
  transform: translateY(-2px);
  color: inherit;
}
body.page-department-detail .doctor-mini .avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #E6F7F8;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
body.page-department-detail .doctor-mini .avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.page-department-detail .doctor-mini .avatar svg {
  width: 36px;
  height: 36px;
  color: #4BC6CA;
}
body.page-department-detail .doctor-mini h5 {
  font-size: 15px;
  font-weight: 600;
  color: #0F1F2A;
  margin-bottom: 2px;
}
body.page-department-detail .doctor-mini .title {
  font-size: 12px;
  color: #8C9AA8;
  margin: 4px 0;
}
body.page-department-detail .doctor-mini .dept {
  font-size: 12px;
  color: #4BC6CA;
  font-weight: 500;
}
body.page-department-detail .empty-mini {
  text-align: center;
  padding: 48px 16px;
  color: #8C9AA8;
  font-size: 14px;
  background: #FAFBFC;
  border: 1px dashed #E5E9EC;
  border-radius: var(--card-radius);
}

body.page-hospital-doctors .doctor-grid-page {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  body.page-hospital-doctors .doctor-grid-page {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  body.page-hospital-doctors .doctor-grid-page {
    grid-template-columns: 1fr;
  }
}
body.page-hospital-doctors .doctor-card-page {
  background: #fff;
  border: 1px solid #E5E9EC;
  border-radius: var(--card-radius);
  padding: 24px;
  text-align: center;
  transition: all 240ms;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
body.page-hospital-doctors .doctor-card-page:hover {
  border-color: #4BC6CA;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(75, 198, 202, 0.1);
  color: inherit;
}
body.page-hospital-doctors .doctor-card-page .avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #E6F7F8;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
body.page-hospital-doctors .doctor-card-page .avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.page-hospital-doctors .doctor-card-page .avatar svg {
  width: 36px;
  height: 36px;
  color: #4BC6CA;
}
body.page-hospital-doctors .doctor-card-page h4 {
  font-size: 16px;
  font-weight: 600;
  color: #0F1F2A;
  margin-bottom: 4px;
}
body.page-hospital-doctors .doctor-card-page .title {
  font-size: 12px;
  color: #8C9AA8;
  margin: 2px 0;
}
body.page-hospital-doctors .doctor-card-page .dept {
  font-size: 12px;
  color: #4BC6CA;
  font-weight: 500;
  margin-bottom: 8px;
}
body.page-hospital-doctors .doctor-card-page .expertise {
  font-size: 12px;
  color: #5A6B7A;
  line-height: 1.5;
  margin-bottom: 16px;
  min-height: 36px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body.page-hospital-doctors .doctor-card-page .btn-book {
  margin-top: auto;
  padding: 8px 16px;
  border-radius: 6px;
  background: #4BC6CA;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}

/*
 * About Page (/page/about) — T10 Dovecure redesign
 * 1:1 with docs/design-preview/about.html
 *
 * 7 sections:
 *   1) page-head        · <x-front-page-head> 组件 (见 css/components/page-head.scss)
 *   2) brand story      · left img + right text + highlight quote
 *   3) mission/vision   · 3-column cards on soft background
 *   4) stats            · dark band, 4 strong numbers
 *   5) team             · 4-column mini cards
 *   6) timeline         · 5 milestones, dashed connector
 *   7) CTA              · shared.consult-cta (already in layout/footer.scss)
 */
body.page-about {
  background: #fff;
}

/* ============================================================
 * Generic .about-section
 * ============================================================ */
.about-section {
  padding: 96px 0;
}
.about-section.about-section-soft {
  background: var(--bg-soft);
}

/* ============================================================
 * Section 2 · Brand Story (left img + right text)
 * ============================================================ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-story-img {
  height: 480px;
  border-radius: var(--radius-card);
  background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-story-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.5) 0%, transparent 50%);
}
.about-story-img svg {
  width: 120px;
  height: 120px;
  color: var(--primary);
  opacity: 0.4;
  z-index: 1;
}

.about-story-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 24px;
  position: relative;
  padding-bottom: 16px;
}
.about-story-content h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: var(--primary);
  margin-top: 16px;
}
.about-story-content p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.8;
  margin: 0 0 16px;
}

.about-story-highlight {
  font-size: 17px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.7;
  padding: 20px 24px;
  background: var(--primary-50);
  box-shadow: inset 3px 0 0 var(--primary);
  border-radius: var(--radius-card);
  margin-top: 24px;
}

/* ============================================================
 * Section 3 · Mission / Vision / Values (3-col cards)
 * ============================================================ */
.about-mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-mv-card {
  background: #fff;
  border-radius: var(--radius-card);
  border: 1px solid var(--divider);
  padding: 40px 32px;
  height: 100%;
  transition: all 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.about-mv-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.about-mv-card .icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-button);
  background: var(--primary-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.about-mv-card .icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}
.about-mv-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 12px;
}
.about-mv-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
 * Section 4 · Stats (dark band, 4 strong numbers)
 * ============================================================ */
.about-stats {
  background: var(--ink);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.about-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(75, 198, 202, 0.15) 0%, transparent 50%);
}
.about-stats .container {
  position: relative;
  z-index: 1;
}
.about-stats .section-header-center {
  text-align: center;
}
.about-stats .section-header-center h2 {
  color: #fff;
}
.about-stats .section-header-center p {
  color: rgba(255, 255, 255, 0.7);
  margin-left: auto;
  margin-right: auto;
}
.about-stats .section-header-center .eyebrow {
  color: var(--primary-100);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.about-stat-item {
  text-align: center;
}
.about-stat-item .stat-num {
  font-size: 56px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}
.about-stat-item .stat-num strong {
  font-weight: inherit;
  color: inherit;
}
.about-stat-item .stat-num .unit {
  font-size: 24px;
  color: var(--primary-100);
  margin-left: 4px;
  font-weight: inherit;
}
.about-stat-item .stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
 * Section 5 · Team (4-col mini cards)
 * ============================================================ */
.about-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.about-team-card {
  background: #fff;
  border-radius: var(--radius-card);
  border: 1px solid var(--divider);
  padding: 32px 24px;
  text-align: center;
  transition: all 240ms;
}
.about-team-card:hover {
  box-shadow: 0 8px 24px rgba(15, 31, 42, 0.06);
  transform: translateY(-4px);
}
.about-team-card .about-team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--primary-50);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-team-card .about-team-avatar svg {
  width: 48px;
  height: 48px;
  color: var(--primary);
}
.about-team-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 4px;
}
.about-team-card .title {
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 12px;
}
.about-team-card .bio {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
 * Section 6 · Timeline (5 milestones, 12px solid dot + dashed)
 * ============================================================ */
.about-timeline-wrap {
  max-width: 720px;
}

.about-timeline {
  position: relative;
  padding-left: 32px;
}
.about-timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 0;
  border-left: 2px dashed var(--divider);
}

.about-timeline-item {
  position: relative;
  padding-bottom: 48px;
}
.about-timeline-item:last-child {
  padding-bottom: 0;
}
.about-timeline-item::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-50);
}

.about-timeline-year {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.about-timeline-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.about-timeline-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ============================================================
 * Responsive
 * ============================================================ */
@media (max-width: 992px) {
  .about-page-head h1 {
    font-size: 36px;
  }
  .about-story {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-story .about-story-img {
    height: 320px;
  }
  .about-mv-grid,
  .about-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
}
@media (max-width: 576px) {
  .about-page-head {
    padding: 56px 0 40px;
  }
  .about-page-head h1 {
    font-size: 28px;
  }
  .about-section {
    padding: 64px 0;
  }
  .about-mv-grid,
  .about-team-grid,
  .about-stats-grid {
    grid-template-columns: 1fr;
  }
  .about-stat-item .stat-num {
    font-size: 40px;
  }
}
