:root {
  --ink: #211c1d;
  --muted: #6f6764;
  --line: rgba(33, 28, 29, 0.12);
  --paper: rgba(255, 255, 255, 0.9);
  --white: #ffffff;
  --brand-deep: #211c1d;
  --brand-mid: #4b4441;
  --brand-warm: #7d746f;
  --brand-soft: #d9d2cd;
  --brand-gradient: linear-gradient(135deg, #211c1d 0%, #3a3432 46%, #7d746f 100%);
  --brand-gradient-soft: linear-gradient(135deg, #4b4441 0%, #7d746f 52%, #d9d2cd 100%);
  --cyan: var(--brand-deep);
  --green: #3a3432;
  --yellow: var(--brand-soft);
  --coral: var(--brand-deep);
  --violet: var(--brand-mid);
  --orange: var(--brand-warm);
  --shadow: 0 18px 42px rgba(33, 28, 29, 0.12);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #313131;
  background:
    radial-gradient(circle at 10% 2%, rgba(33, 28, 29, 0.04), transparent 30%),
    radial-gradient(circle at 86% 14%, rgba(125, 116, 111, 0.06), transparent 28%),
    linear-gradient(118deg, rgba(33, 28, 29, 0.025), transparent 24%, rgba(217, 210, 205, 0.11) 52%, transparent 78%),
    #fcfbfa;
  min-height: 100vh;
  line-height:25px;
}

body::before {
  content: "";
  position: fixed;
  inset: -18% -10% auto -10%;
  height: 520px;
  pointer-events: none;
  z-index: -1;
  background: linear-gradient(100deg, rgba(33, 28, 29, 0.06), rgba(125, 116, 111, 0.055), rgba(217, 210, 205, 0.08), rgba(33, 28, 29, 0.05));
  filter: blur(34px);
  transform: rotate(-5deg);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.top-strip {
  display: none;
  color: #ffffff;
  background: linear-gradient(90deg, #151515 0%, #272423 45%, #595451 100%);
}

.top-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 48px;
  padding: 6px 15px;
}

.contact-inline,
.social-list,
.top-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.social-list a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.contact-inline span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 4px;
  color: #ffffff;
}

.search-box {
  display: flex;
  align-items: center;
  width: min(360px, 100%);
  background: #ffffff;
  border: 1px solid rgba(33, 28, 29, 0.18);
  border-radius: 8px;
  padding: 0;
  box-shadow: none;
}

.header-search {
  width: min(330px, 100%);
  min-height: 36px;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 8px 12px;
  background: transparent;
  color: var(--ink);
}

.search-box button,
.icon-button {
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
  color: #ffffff;
  background: var(--ink);
}

.search-box button {
  width: 38px;
  height: 34px;
  border-radius: 6px;
  color: #4b4441;
  background: transparent;
  transition: background 0.2s ease, transform 0.2s ease;
}

.search-box button:hover {
  background: rgba(33, 28, 29, 0.08);
  transform: translateY(-1px);
}

.main-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 0;
  box-shadow: none;
}

.main-header .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 0 15px;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo img {
  width: auto;
  height: 78px;
  padding: 12px 0 !important;
  object-fit: contain;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: max-content;
}

.brand-mark {
  width: 146px;
  height: 76px;
  border-radius: 0;
  background: url("assets/logo-ttc.png") center / contain no-repeat;
  box-shadow: none;
  position: relative;
}

.brand-mark::after {
  display: none;
}

.brand-name {
  display: none;
  gap: 2px;
  font-weight: 600;
  line-height: 1.05;
  font-size: 22px;
  letter-spacing: 0;
}

.brand-name small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0;
  border-radius: 0;
  color: #ffffff;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
  text-transform: uppercase;
  font-size:10pt;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.18);
}

.primary-nav a.has-caret::after {
  content: "";
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  margin: -1px 0 0 8px;
  border: solid currentColor;
  border-width: 0 1px 1px 0;
  opacity: 0.78;
  transform: rotate(45deg);
  transform-origin: center;
}

.primary-nav a.active,
.primary-nav a:hover {
  color: #ffffff;
  background: transparent;
}

.nav-search {
  position: relative;
  flex: 0 0 42px;
  width: 42px;
  min-height: 44px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: width 0.22s ease, border-color 0.22s ease;
}

.nav-search:hover,
.nav-search:focus-within {
  width: 190px;
  flex-basis: 190px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}

.nav-search input[type="text"] {
  height: 44px !important;
  padding: 8px 40px 8px 0;
  color: #ffffff !important;
  opacity: 0;
  border: 0 !important;
  background: transparent;
  transition: opacity 0.18s ease;
}

.nav-search:hover input[type="text"],
.nav-search:focus-within input[type="text"] {
  opacity: 1;
}

.nav-search input[type="text"]::placeholder {
  color: rgba(255, 255, 255, 0.86);
}

.nav-search .nav-search-button {
  position: absolute;
  top: 50%;
  right: 0;
  width: 27px !important;
  height: 27px !important;
  padding: 0;
  border: 0;
  transform: translateY(-50%);
  filter: brightness(0) invert(1);
  opacity: 0.95;
  cursor: pointer;
}

.product-dropdown {
  position: absolute;
  top: 60%;
  left: 50%;
  z-index: 75;
  display: grid;
  min-width: 210px;
  margin-top: 10px;
  padding: 8px;
  background: #ffffff;
  border: 1px solid rgba(33, 28, 29, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(33, 28, 29, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.product-nav-item:hover .product-dropdown,
.product-nav-item:focus-within .product-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.primary-nav .product-dropdown a {
  display: flex;
  min-height: 0;
  padding: 8px 14px;
  border-radius: 6px;
  color: #3a3432;
  font-weight: 600;
  white-space: nowrap;
  font-size:10pt;
}

.primary-nav .product-dropdown a:hover {
  color: var(--ink);
  background: rgba(33, 28, 29, 0.08);
}

.menu-toggle {
  display: none;
}

.category-bar {
  display: none;
  position: sticky;
  top: 0;
  z-index: 60;
  background:
    linear-gradient(90deg, rgba(33, 28, 29, 0.05), rgba(217, 210, 205, 0.12)),
    #ffffff;
  border-block: 1px solid rgba(33, 28, 29, 0.1);
  box-shadow: 0 12px 28px rgba(33, 28, 29, 0.07);
}

.category-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.category-menu {
  display: flex;
  align-items: center;
  flex: 1;
  min-height: 62px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
}

.category-search {
  flex: 0 0 330px;
  width: 330px;
  border-color: transparent;
  box-shadow: none;
}

.category-menu > li {
  position: relative;
}

.category-menu > li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 22px;
  background: rgba(33, 28, 29, 0.16);
  transform: translateY(-50%);
}

.category-menu > li > a {
  display: block;
  margin: 0 6px;
  padding: 13px 18px;
  color: var(--ink);
  font-weight: 600;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(33, 28, 29, 0.06);
  box-shadow: 0 8px 18px rgba(33, 28, 29, 0.05);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.category-menu > li:hover > a {
  background: var(--brand-gradient-soft);
  color: #ffffff;
  border-color: transparent;
}

.sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 230px;
  display: none;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
}

.category-menu li:hover .sub-menu {
  display: block;
}

.sub-menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 6px;
  color: #3a3432;
  font-weight: 600;
}

.sub-menu a:hover {
  background: rgba(33, 28, 29, 0.08);
  color: var(--ink);
}

.hero-slider {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background: #ebe7e3;
  width:100%;
}

.hero-track {
  display: flex;
  height: 100%;
  transition: transform 0.65s ease;
  width:100%;
}

.hero-slide {
  flex: 0 0 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  width:100%;
}

.hero-slide img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center top;
}

.hero-slide::before {
 width:100%;
}

.hero-content {
  position: relative;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  color: #ffffff;
}

.hero-content h1 {
  max-width: 720px;
  margin: 0 0 18px;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-content p {
  max-width: 560px;
  margin: 0 0 28px;
  font-size: 18px;
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.btn-with-icon span {
  font-size: 17px;
  line-height: 1;
}

.btn-primary {
  color: #fff;
  background: var(--brand-gradient-soft);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.btn-dark {
  color: #ffffff;
  background: var(--brand-gradient);
}

.btn:hover {
  background: var(--brand-gradient-soft);
  color: var(--ink);
  box-shadow: 0 14px 30px rgba(33, 28, 29, 0.16);
  transform: translateY(-1px);
}

.slider-arrow,
.carousel-arrow {
  position: absolute;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  font-size: 24px;
}

.slider-arrow.prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.slider-arrow.next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.section {
  padding: 40px 0;
}

.section-tight {
  padding: 48px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.eyebrow {
  color: #4b4441;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.section-title {
  margin: 8px 0 0;
  font-size: clamp(23px, 2vw, 28px);
  line-height: 1.08;
  letter-spacing: 0;
  color:#ed0810;
  text-transform: uppercase;
}

.product-category-title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  padding-bottom: 14px;
}

.product-category-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: min(220px, calc(100% - 58px));
  height: 2px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--brand-deep), var(--brand-warm), var(--brand-soft), transparent);
}

.product-category-title .title-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #ffffff;
  background: var(--brand-gradient);
  box-shadow: 0 12px 26px rgba(33, 28, 29, 0.14);
}

.product-category-title svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-copy {
  max-width: 540px;
  color: var(--muted);
  line-height: 1.7;
}

.home-intro {
  background: rgba(255, 255, 255, 0.58);
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.intro-content {
  max-width: 560px;
}

.intro-content p {
  margin: 18px 0 24px;
  color: #313131;
  line-height: 1.75;
}

.intro-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ece8e5;
  box-shadow: 0 18px 42px rgba(33, 28, 29, 0.12);
}

.intro-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(33, 28, 29, 0.16), transparent 48%);
  pointer-events: none;
}

.intro-media img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  height: 100%;
  object-fit: cover;
}

.product-section {
  position: relative;
  margin: 32px 0;
  padding: 34px 0 24px;
  overflow: hidden;
}

.product-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.34)),
    radial-gradient(circle at 8% 20%, rgba(33, 28, 29, 0.08), transparent 32%),
    radial-gradient(circle at 86% 62%, rgba(125, 116, 111, 0.12), transparent 30%);
  border-block: 1px solid rgba(255, 255, 255, 0.65);
}

.product-carousel {
  position: relative;
}

.product-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 72px) / 4);
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 4px 2px 2px;
  scrollbar-width: none;
}

.product-track::-webkit-scrollbar {
  display: none;
}

.product-card {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(33, 28, 29, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(33, 28, 29, 0.16);
}

.product-image {
  aspect-ratio: 1.15 / 1;
  overflow: hidden;
  background: #ece8e5;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-card:hover img {
  transform: scale(1.06);
}

.product-body {
  display: block;
  flex: 1;
  padding: 16px;
  background: linear-gradient(180deg, #ffffff, rgba(248, 246, 244, 0.94));
}

.product-body h3 {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.3;
  color: var(--ink);
  text-align:center;
}

.price {
  margin: 0;
  color: #ed0810;
  font-size: 15px;
  text-align:center;
}

.carousel-arrow {
  top: 42%;
}

.carousel-arrow.prev {
  left: -18px;
}

.carousel-arrow.next {
  right: -18px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.why-item {
  position: relative;
  text-align: center;
  padding: 30px 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.why-item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-deep), var(--brand-warm), var(--brand-soft));
}

.why-icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin: 0 auto 18px;
  color: #ffffff;
  border-radius: 50%;
  background: var(--brand-gradient);
  font-size: 24px;
  font-weight: 600;
  box-shadow: 0 16px 28px rgba(33, 28, 29, 0.16);
}

.why-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-item h3 {
  margin: 0 0 10px;
  font-size: 19px;
}

.why-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.news-feature {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.24)),
    radial-gradient(circle at 12% 16%, rgba(217, 210, 205, 0.18), transparent 30%),
    radial-gradient(circle at 88% 80%, rgba(33, 28, 29, 0.08), transparent 28%);
}

.news-carousel {
  position: relative;
}

.news-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 72px) / 4);
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 4px 2px 2px;
  scrollbar-width: none;
}

.news-track::-webkit-scrollbar {
  display: none;
}

.news-track .news-item {
  scroll-snap-align: start;
}

.page-hero {
  padding: 74px 0;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(33, 28, 29, 0.82), rgba(33, 28, 29, 0.32)),
    url("/icon/bg-tin.jpg") center/cover;
}

.page-hero h1 {
  max-width: 760px;
  margin: 20px 0 12px;
  font-size: clamp(25px, 3.0vw, 45px);
  line-height: 1.05;
}

.breadcrumb {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  opacity: 0.92;
  padding-top:10px;
  font-size:10pt;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 28px;
  align-items: start;
}

.filter-panel,
.detail-panel,
.article-card,
.news-item,
.policy-box {
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.filter-panel {
  padding: 24px;
  position: sticky;
  top: 156px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)),
    radial-gradient(circle at 0 0, rgba(33, 28, 29, 0.08), transparent 34%),
    radial-gradient(circle at 100% 22%, rgba(125, 116, 111, 0.11), transparent 32%);
  overflow: hidden;
}

.filter-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--brand-deep), var(--brand-warm), var(--brand-soft));
}

.filter-panel h2,
.detail-panel h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

.filter-list {
  display: grid;
  gap: 0;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(33, 28, 29, 0.07);
  overflow: hidden;
}

.filter-list a {
  display: flex;
  align-items: left;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 0;
  border-bottom: 1px solid rgba(33, 28, 29, 0.1);
  background: transparent;
  color: #3a3432;
}

.filter-list li:last-child a {
  border-bottom: 0;
}

.filter-list a::before {
  content: "+";
  
}

.filter-list a:hover {
  color: var(--ink);
  background: rgba(33, 28, 29, 0.08);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card.is-hidden {
  display: none;
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.load-more-wrap.is-hidden {
  display: none;
}

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 28px;
  z-index: 80;
  display: grid;
  gap: 14px;
  justify-items: center;
}

.floating-contact a {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(33, 28, 29, 0.2);
  position: relative;
}

.floating-phone {
  background: #211c1d;
}

.floating-phone::before,
.floating-phone::after {
  content: "";
  position: absolute;
  inset: -11px;
  border: 1px solid rgba(33, 28, 29, 0.28);
  border-radius: 50%;
  animation: hotline-pulse 1.8s ease-out infinite;
}

.floating-phone::after {
  inset: -20px;
  animation-delay: 0.35s;
}

.floating-phone svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
  animation: phone-shake 1.6s ease-in-out infinite;
}

.floating-zalo {
  background: #4b4441;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
}

.floating-zalo::after {
  content: "";
  position: absolute;
  left: 9px;
  bottom: 2px;
  width: 12px;
  height: 12px;
  background: #4b4441;
  transform: rotate(45deg);
  border-radius: 0 0 3px 0;
}

@keyframes hotline-pulse {
  0% {
    opacity: 0.9;
    transform: scale(0.78);
  }
  100% {
    opacity: 0;
    transform: scale(1.15);
  }
}

@keyframes phone-shake {
  0%,
  100% {
    transform: rotate(0deg);
  }
  12% {
    transform: rotate(-12deg);
  }
  24% {
    transform: rotate(12deg);
  }
  36% {
    transform: rotate(-8deg);
  }
  48% {
    transform: rotate(8deg);
  }
  60% {
    transform: rotate(0deg);
  }
}

.detail-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-items: start;
}

.gallery-main {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #ffffff;
  cursor: zoom-in;
}

.gallery-main img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.thumb-carousel {
  position: relative;
  margin-top: 12px;
}

.thumb-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 36px) / 4);
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.thumb-row::-webkit-scrollbar {
  display: none;
}

.gallery-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0;
  border: 2px solid transparent;
  aspect-ratio: 1. / 1;
  border-radius: var(--radius);
  background: #ffffff;
  cursor: pointer;
  overflow: hidden;
  scroll-snap-align: start;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.gallery-thumb:hover,
.gallery-thumb.is-active {
  border-color: var(--brand-deep);
}

.thumb-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: none;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(237, 8, 16, 0.28);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.94);
  background: #ed0810;
  box-shadow: 0 10px 24px rgba(33, 28, 29, 0.26);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  transform: translateY(-50%);
}

.thumb-carousel.has-thumb-arrows .thumb-arrow,
.thumb-carousel:has(.thumb-row .gallery-thumb:nth-child(n+5)) .thumb-arrow {
  display: grid;
}

.thumb-arrow.prev {
  left: -12px;
}

.thumb-arrow.next {
  right: -12px;
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 54px 82px;
  background: rgba(0, 0, 0, 0.82);
}

.product-lightbox.is-open {
  display: flex;
}

.product-lightbox img {
  width: 100%;
  max-width: min(1180px, 100%);
  max-height: 86vh;
  object-fit: contain;
  border-radius: var(--radius);
  background: #ffffff;
}

.product-lightbox button {
  position: absolute;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: #211c1d;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.product-lightbox-close {
  top: 18px;
  right: 22px;
}

.product-lightbox-prev {
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
}

.product-lightbox-next {
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
}

.product-lightbox button[hidden] {
  display: none;
}

.detail-panel {
  padding: 28px;
}

.detail-panel h1 {
  margin: 0 0 12px;
  font-size: clamp(21px, 1.8vw, 28px);
  line-height: 1.08;
}

.sku {
  color: var(--muted);
  font-weight: 600;
}

.detail-price {
  margin: 18px 0;
  color: #ed0810;
  font-size: 21px;
  font-weight: 600;
}

.spec-list {
  display: grid;
  gap: 12px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.tab-pill {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  font-weight: 600;
}

.tab-pill.active {
  color: #ffffff;
  background: var(--brand-gradient);
}

.tab-pill:hover {
  background: var(--brand-gradient-soft);
  color: var(--ink);
}

.rich-text {
  color: #4b4441;
  line-height: 1.8;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-item {
  overflow: hidden;
}

.news-item img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.news-body {
  padding: 18px;
}

.news-body time {
  color: #4b4441;
  font-size: 13px;
  font-weight: 600;
}

.news-body h3 {
  margin: 10px 0;
  font-size: 20px;
  line-height: 1.28;
}

.news-body p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.6;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 30px;
}

.article-card {
  padding: clamp(22px, 4vw, 42px);
}

.article-card h1 {
  margin: 0 0 16px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.07;
}

.article-card .lead {
  color: #4b4441;
  font-size: 19px;
  line-height: 1.7;
}

.article-card figure {
  margin: 28px 0;
}

.article-card figure img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.article-card figcaption {
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
}

.sidebar-list {
  display: grid;
  gap: 14px;
}

.policy-box {
  padding: 22px;
}

.site-footer {
  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(33, 28, 29, 0.98), rgba(52, 47, 45, 0.96)),
    radial-gradient(circle at 12% 20%, rgba(217, 210, 205, 0.14), transparent 30%);
  padding: 58px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 34px;
  margin-bottom: 34px;
}

.site-footer .brand-name small {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer p,
.site-footer li {
  color: rgba(255, 255, 255, 0.78);
 
}

.site-footer ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-title {
  margin: 0 0 16px;
  font-size: 15px;
}

.copyright {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  text-align:center;
}

@media (max-width: 1024px) {
  .primary-nav {
    gap: 12px;
  }

  .primary-nav a,
  .category-menu > li > a {
    padding-inline: 4px;
    font-size: 9.5pt;
  }

  .product-track {
    grid-auto-columns: calc((100% - 24px) / 2);
  }

  .news-track {
    grid-auto-columns: calc((100% - 24px) / 2);
  }

  .category-search {
    flex-basis: 280px;
    width: 280px;
  }

  .why-grid,
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalog-layout,
  .detail-layout,
  .article-layout,
  .intro-layout {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    position: static;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .top-strip .container {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    padding: 12px 12px 12px 20px;
  }

  .top-left {
    justify-content: center;
  }

  .search-box {
    width: 100%;
  }

  .main-header .container {
    min-height: 82px;
  }

  .logo img {
    height: 70px;
    padding: 10px 0 !important;
  }

  .brand-mark {
    width: 132px;
    height: 74px;
  }

  .brand-name {
    font-size: 19px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #ffffff;
    color: var(--ink);
    font-size: 22px;
    cursor: pointer;
  }

  .primary-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .primary-nav.open {
    display: flex;
  }

  .primary-nav a {
    color: var(--ink);
    text-shadow: none;
    padding: 0 12px;
    border-radius: 6px;
  }

  .primary-nav a.active,
  .primary-nav a:hover {
    color: #ed0810;
  }

  .nav-search,
  .nav-search:hover,
  .nav-search:focus-within {
    width: 100%;
    flex-basis: auto;
    min-height: 42px;
    border: 1px solid rgba(33, 28, 29, 0.14);
    border-radius: 8px;
    background: #ffffff;
  }

  .nav-search input[type="text"] {
    height: 42px !important;
    padding: 8px 44px 8px 12px;
    color: var(--ink) !important;
    opacity: 1;
  }

  .nav-search input[type="text"]::placeholder {
    color: var(--muted);
  }

  .nav-search .nav-search-button {
    right: 12px;
    filter: none;
  }

  .nav-item {
    display: block;
  }

  .product-dropdown {
    position: static;
    display: none;
    min-width: 0;
    margin: 0 0 0 12px;
    padding: 4px 0 4px 10px;
    border: 0;
    border-left: 1px solid rgba(33, 28, 29, 0.12);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .product-nav-item:hover .product-dropdown,
  .product-nav-item:focus-within .product-dropdown {
    display: grid;
    transform: none;
  }

  .primary-nav .product-dropdown a {
    padding: 9px 12px;
  }

  .category-menu {
    overflow-x: auto;
    scrollbar-width: none;
    width: 100%;
  }

  .category-bar .container {
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px 0;
  }

  .category-search {
    flex: 1 1 100%;
    width: 100%;
  }

  .category-menu::-webkit-scrollbar {
    display: none;
  }

  .category-menu > li {
    flex: 0 0 auto;
  }

  .sub-menu {
    position: fixed;
    left: 16px;
    right: 16px;
    width: auto;
  }

  .hero-slider,
  .hero-track {
    min-height: 360px;
  }

  .hero-slide img {
    min-height: 360px;
  }

  .hero-slide {
    align-items: end;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .slider-arrow {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  .slider-arrow.prev {
    left: 12px;
  }

  .slider-arrow.next {
    right: 12px;
  }

  .section {
    padding: 52px 0;
  }

  .section-head {
    display: block;
  }

  .intro-layout {
    gap: 22px;
  }

  .intro-content {
    max-width: none;
  }

  .intro-media img {
    aspect-ratio: 1.2 / 1;
  }

  .product-category-title {
    align-items: flex-start;
    gap: 10px;
    padding-bottom: 12px;
  }

  .product-category-title .title-icon {
    width: 40px;
    height: 40px;
  }

  .product-category-title svg {
    width: 22px;
    height: 22px;
  }

  .product-category-title::after {
   width: min(170px, calc(100% - 50px));
  }

  .product-track,
  .product-grid {
    grid-auto-columns: calc((100% - 14px) / 2);
    gap: 14px;
  }

  .news-track {
    grid-auto-columns: calc((100% - 14px) / 2);
    gap: 14px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-body {
    padding: 12px;
  }

  .product-body h3 {
    min-height: auto;
    font-size: 15px;
  }

  .carousel-arrow {
    display: grid;
    width: 38px;
    height: 38px;
    font-size: 20px;
    top: 38%;
  }

  .carousel-arrow.prev {
    left: 6px;
  }

  .carousel-arrow.next {
    right: 6px;
  }

  .floating-contact {
    right: 14px;
    bottom: 18px;
    gap: 12px;
  }

  .floating-contact a {
    width: 52px;
    height: 52px;
  }

  .floating-phone svg {
    width: 26px;
    height: 26px;
  }

  .why-grid,
  .news-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .thumb-row {
    grid-auto-columns: calc((100% - 12px) / 2);
  }

  .thumb-carousel:has(.thumb-row .gallery-thumb:nth-child(n+3)) .thumb-arrow {
    display: grid;
  }

  .thumb-arrow.prev {
    left: -6px;
  }

  .thumb-arrow.next {
    right: -6px;
  }

  .product-lightbox {
    padding: 46px 14px;
  }

  .product-lightbox img {
    max-height: 82vh;
  }

  .product-lightbox-prev {
    left: 10px;
  }

  .product-lightbox-next {
    right: 10px;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 22px, var(--container));
  }

  .contact-inline {
    font-size: 13px;
    justify-content: center;
  }

  .hero-slider,
  .hero-track {
    min-height: 320px;
  }

  .hero-slide img {
    min-height: 320px;
  }

  .product-track,
  .product-grid {
    gap: 10px;
  }

  .price {
    font-size: 16px;
  }
}

/* Home carousel cleanup: keep cards separated without extra bottom background. */
.product-section {
  margin: 0;
  padding-bottom: 18px;
}

.product-section::before {
  display: none;
}

.news-feature {
  background: transparent;
}

.product-track,
.news-track {
  grid-auto-columns: calc((100% - 72px) / 4);
  gap: 24px;
  padding: 4px 2px 2px;
}

.product-track .product-card,
.news-track .news-item {
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(33, 28, 29, 0.1);
}

@media (max-width: 1024px) {
  .product-track,
  .news-track {
    grid-auto-columns: calc((100% - 24px) / 2);
    gap: 24px;
  }
}

@media (max-width: 760px) {
  .product-track,
  .news-track {
    grid-auto-columns: calc((100% - 14px) / 2);
    gap: 14px;
  }
}

/* Mobile category/search layout fix */
@media (max-width: 760px) {
  .category-bar .container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 8px 11px;
  }

  .category-menu {
    order: 1;
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    min-height: auto;
    display: flex;
    overflow-x: auto;
    padding: 0 0 4px;
    white-space: nowrap;
  }

  .category-search {
    order: 2;
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin: 0;
    display: flex;
  }

  .category-search > div {
    width: 100%;
  }

  .category-search input,
  .category-search textarea,
  .category-search .aspNetDisabled {
    width: 100% !important;
  }
}

.product-section .section-head {
  display: block;
  margin-bottom: 24px;
  text-align: center;
}

.product-section .section-head > div {
  display: block;
}

.product-section .section-head a {
  display: inline-block;
}

.product-section .section-title.product-category-title {
  display: inline-flex;
  justify-content: center;
  color: #ed0810;
  font-weight: 600;
  text-align: center;
  padding: 0 0 16px;
  text-transform: uppercase;
}

.product-section .section-title.product-category-title::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 42px;
  height: 8px;
  border-radius: 999px;
  background: #ed0810;
  transform: translateX(-50%);
}

.product-section .section-title.product-category-title::after {
  left: 50%;
  bottom: 0;
  width: min(230px, 100%);
  height: 2px;
  background: linear-gradient(90deg, transparent, #ed0810 18%, #ed0810 82%, transparent);
  transform: translateX(-50%);
}

.section-head > div:only-child {
  display: block;
  width: 100%;
  text-align: center;
}

.section-head > div:only-child .section-title.product-category-title {
  display: inline-flex;
  justify-content: center;
  position: relative;
  color: #ed0810;
  font-weight: 600;
  text-align: center;
  padding: 0 0 16px;
  text-transform: uppercase;
}

.section-head > div:only-child .section-title.product-category-title::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 42px;
  height: 8px;
  border-radius: 999px;
  background: #ed0810;
  transform: translateX(-50%);
}

.section-head > div:only-child .section-title.product-category-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(230px, 100%);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #ed0810 18%, #ed0810 82%, transparent);
  transform: translateX(-50%);
}

.section:has(.why-grid) {
  position: relative;
  margin: 34px 0;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(122deg, rgba(237, 8, 16, 0.72) 0 18%, transparent 18% 100%),
    linear-gradient(135deg, #080808 0%, #171010 48%, #8a050b 100%);
}

.section:has(.why-grid)::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px),
    linear-gradient(90deg, transparent, rgba(237, 8, 16, 0.24), transparent);
}

.section:has(.why-grid)::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 320px;
  height: 220px;
  border: 28px solid rgba(237, 8, 16, 0.34);
  transform: rotate(-18deg);
}

.section:has(.why-grid) .container {
  position: relative;
  z-index: 1;
}

.section:has(.why-grid) .section-title.product-category-title {
  color: #ffffff;
}

.section:has(.why-grid) .section-title.product-category-title::before {
  background: #ed0810;
}

.section:has(.why-grid) .section-title.product-category-title::after {
  background: linear-gradient(90deg, transparent, #ffffff 18%, #ed0810 50%, #ffffff 82%, transparent);
}

.section:has(.why-grid) .why-item {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(237, 8, 16, 0.28);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.section:has(.why-grid) .why-item::before {
  background: linear-gradient(90deg, #ed0810, #111111, #ed0810);
}

.section:has(.why-grid) .why-icon {
  background: linear-gradient(135deg, #ed0810, #111111);
  box-shadow: 0 16px 28px rgba(237, 8, 16, 0.24);
}

.section:has(.why-grid) .why-item h3 {
  color: #111111;
}

.product-category-banner {
  display: block;
  width: 100vw;
  margin: 0 calc(50% - 50vw) 28px;
  overflow: hidden;
  background: #f5f5f5;
}

.product-category-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.product-track {
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px;
}

.product-image {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1.5 / 1;
  background: #ffffff;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-body {
  padding: 10px 16px 16px;
}

.product-card:hover .product-image img {
  transform: none;
}

@media (max-width: 1024px) {
  .product-track {
    grid-auto-columns: calc((100% - 24px) / 2);
    gap: 24px;
  }
}

@media (max-width: 760px) {
  .product-section .section-head {
    margin-bottom: 20px;
  }

  .product-section .section-title.product-category-title {
    align-items: center;
    padding-bottom: 14px;
  }

  .product-section .section-title.product-category-title::after {
    width: min(190px, 100%);
  }

  .product-category-banner {
    margin-bottom: 20px;
  }

  .product-track {
    grid-auto-columns: calc((100% - 14px) / 2);
    gap: 14px;
  }
}
.container {
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto
}
@media (min-width:768px) {
.container {
	width: 750px
}
}
@media (min-width:992px) {
.container {
	width: 970px
}
}
@media (min-width:1200px) {
.container {
	width: 1200px
}
}
.container-fluid {
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto
}
.row {
	margin-right: -15px;
	margin-left: -15px
}
.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
	position: relative;
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px
}
.col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
	float: left
}
.col-xs-12 {
	width: 100%
}
.col-xs-11 {
	width: 91.66666667%
}
.col-xs-10 {
	width: 83.33333333%
}
.col-xs-9 {
	width: 75%
}
.col-xs-8 {
	width: 66.66666667%
}
.col-xs-7 {
	width: 58.33333333%
}
.col-xs-6 {
	width: 50%
}
.col-xs-5 {
	width: 41.66666667%
}
.col-xs-4 {
	width: 33.33333333%
}
.col-xs-3 {
	width: 25%
}
.col-xs-2 {
	width: 16.66666667%
}
.col-xs-1 {
	width: 8.33333333%
}
.col-xs-pull-12 {
	right: 100%
}
.col-xs-pull-11 {
	right: 91.66666667%
}
.col-xs-pull-10 {
	right: 83.33333333%
}
.col-xs-pull-9 {
	right: 75%
}
.col-xs-pull-8 {
	right: 66.66666667%
}
.col-xs-pull-7 {
	right: 58.33333333%
}
.col-xs-pull-6 {
	right: 50%
}
.col-xs-pull-5 {
	right: 41.66666667%
}
.col-xs-pull-4 {
	right: 33.33333333%
}
.col-xs-pull-3 {
	right: 25%
}
.col-xs-pull-2 {
	right: 16.66666667%
}
.col-xs-pull-1 {
	right: 8.33333333%
}
.col-xs-pull-0 {
	right: auto
}
.col-xs-push-12 {
	left: 100%
}
.col-xs-push-11 {
	left: 91.66666667%
}
.col-xs-push-10 {
	left: 83.33333333%
}
.col-xs-push-9 {
	left: 75%
}
.col-xs-push-8 {
	left: 66.66666667%
}
.col-xs-push-7 {
	left: 58.33333333%
}
.col-xs-push-6 {
	left: 50%
}
.col-xs-push-5 {
	left: 41.66666667%
}
.col-xs-push-4 {
	left: 33.33333333%
}
.col-xs-push-3 {
	left: 25%
}
.col-xs-push-2 {
	left: 16.66666667%
}
.col-xs-push-1 {
	left: 8.33333333%
}
.col-xs-push-0 {
	left: auto
}
.col-xs-offset-12 {
	margin-left: 100%
}
.col-xs-offset-11 {
	margin-left: 91.66666667%
}
.col-xs-offset-10 {
	margin-left: 83.33333333%
}
.col-xs-offset-9 {
	margin-left: 75%
}
.col-xs-offset-8 {
	margin-left: 66.66666667%
}
.col-xs-offset-7 {
	margin-left: 58.33333333%
}
.col-xs-offset-6 {
	margin-left: 50%
}
.col-xs-offset-5 {
	margin-left: 41.66666667%
}
.col-xs-offset-4 {
	margin-left: 33.33333333%
}
.col-xs-offset-3 {
	margin-left: 25%
}
.col-xs-offset-2 {
	margin-left: 16.66666667%
}
.col-xs-offset-1 {
	margin-left: 8.33333333%
}
.col-xs-offset-0 {
	margin-left: 0
}
@media (min-width:768px) {
.col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9 {
	float: left
}
.col-sm-12 {
	width: 100%
}
.col-sm-11 {
	width: 91.66666667%
}
.col-sm-10 {
	width: 83.33333333%
}
.col-sm-9 {
	width: 75%
}
.col-sm-8 {
	width: 66.66666667%
}
.col-sm-7 {
	width: 58.33333333%
}
.col-sm-6 {
	width: 50%
}
.col-sm-5 {
	width: 41.66666667%
}
.col-sm-4 {
	width: 33.33333333%
}
.col-sm-3 {
	width: 25%
}
.col-sm-2 {
	width: 16.66666667%
}
.col-sm-1 {
	width: 8.33333333%
}
.col-sm-pull-12 {
	right: 100%
}
.col-sm-pull-11 {
	right: 91.66666667%
}
.col-sm-pull-10 {
	right: 83.33333333%
}
.col-sm-pull-9 {
	right: 75%
}
.col-sm-pull-8 {
	right: 66.66666667%
}
.col-sm-pull-7 {
	right: 58.33333333%
}
.col-sm-pull-6 {
	right: 50%
}
.col-sm-pull-5 {
	right: 41.66666667%
}
.col-sm-pull-4 {
	right: 33.33333333%
}
.col-sm-pull-3 {
	right: 25%
}
.col-sm-pull-2 {
	right: 16.66666667%
}
.col-sm-pull-1 {
	right: 8.33333333%
}
.col-sm-pull-0 {
	right: auto
}
.col-sm-push-12 {
	left: 100%
}
.col-sm-push-11 {
	left: 91.66666667%
}
.col-sm-push-10 {
	left: 83.33333333%
}
.col-sm-push-9 {
	left: 75%
}
.col-sm-push-8 {
	left: 66.66666667%
}
.col-sm-push-7 {
	left: 58.33333333%
}
.col-sm-push-6 {
	left: 50%
}
.col-sm-push-5 {
	left: 41.66666667%
}
.col-sm-push-4 {
	left: 33.33333333%
}
.col-sm-push-3 {
	left: 25%
}
.col-sm-push-2 {
	left: 16.66666667%
}
.col-sm-push-1 {
	left: 8.33333333%
}
.col-sm-push-0 {
	left: auto
}
.col-sm-offset-12 {
	margin-left: 100%
}
.col-sm-offset-11 {
	margin-left: 91.66666667%
}
.col-sm-offset-10 {
	margin-left: 83.33333333%
}
.col-sm-offset-9 {
	margin-left: 75%
}
.col-sm-offset-8 {
	margin-left: 66.66666667%
}
.col-sm-offset-7 {
	margin-left: 58.33333333%
}
.col-sm-offset-6 {
	margin-left: 50%
}
.col-sm-offset-5 {
	margin-left: 41.66666667%
}
.col-sm-offset-4 {
	margin-left: 33.33333333%
}
.col-sm-offset-3 {
	margin-left: 25%
}
.col-sm-offset-2 {
	margin-left: 16.66666667%
}
.col-sm-offset-1 {
	margin-left: 8.33333333%
}
.col-sm-offset-0 {
	margin-left: 0
}
}
@media (min-width:992px) {
.col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9 {
	float: left
}
.col-md-12 {
	width: 100%
}
.col-md-11 {
	width: 91.66666667%
}
.col-md-10 {
	width: 83.33333333%
}
.col-md-9 {
	width: 75%
}
.col-md-8 {
	width: 66.66666667%
}
.col-md-7 {
	width: 58.33333333%
}
.col-md-6 {
	width: 50%
}
.col-md-5 {
	width: 41.66666667%
}
.col-md-4 {
	width: 33.33333333%
}
.col-md-3 {
	width: 25%
}
.col-md-2 {
	width: 16.66666667%
}
.col-md-1 {
	width: 8.33333333%
}
.col-md-pull-12 {
	right: 100%
}
.col-md-pull-11 {
	right: 91.66666667%
}
.col-md-pull-10 {
	right: 83.33333333%
}
.col-md-pull-9 {
	right: 75%
}
.col-md-pull-8 {
	right: 66.66666667%
}
.col-md-pull-7 {
	right: 58.33333333%
}
.col-md-pull-6 {
	right: 50%
}
.col-md-pull-5 {
	right: 41.66666667%
}
.col-md-pull-4 {
	right: 33.33333333%
}
.col-md-pull-3 {
	right: 25%
}
.col-md-pull-2 {
	right: 16.66666667%
}
.col-md-pull-1 {
	right: 8.33333333%
}
.col-md-pull-0 {
	right: auto
}
.col-md-push-12 {
	left: 100%
}
.col-md-push-11 {
	left: 91.66666667%
}
.col-md-push-10 {
	left: 83.33333333%
}
.col-md-push-9 {
	left: 75%
}
.col-md-push-8 {
	left: 66.66666667%
}
.col-md-push-7 {
	left: 58.33333333%
}
.col-md-push-6 {
	left: 50%
}
.col-md-push-5 {
	left: 41.66666667%
}
.col-md-push-4 {
	left: 33.33333333%
}
.col-md-push-3 {
	left: 25%
}
.col-md-push-2 {
	left: 16.66666667%
}
.col-md-push-1 {
	left: 8.33333333%
}
.col-md-push-0 {
	left: auto
}
.col-md-offset-12 {
	margin-left: 100%
}
.col-md-offset-11 {
	margin-left: 91.66666667%
}
.col-md-offset-10 {
	margin-left: 83.33333333%
}
.col-md-offset-9 {
	margin-left: 75%
}
.col-md-offset-8 {
	margin-left: 66.66666667%
}
.col-md-offset-7 {
	margin-left: 58.33333333%
}
.col-md-offset-6 {
	margin-left: 50%
}
.col-md-offset-5 {
	margin-left: 41.66666667%
}
.col-md-offset-4 {
	margin-left: 33.33333333%
}
.col-md-offset-3 {
	margin-left: 25%
}
.col-md-offset-2 {
	margin-left: 16.66666667%
}
.col-md-offset-1 {
	margin-left: 8.33333333%
}
.col-md-offset-0 {
	margin-left: 0
}
}
@media (min-width:1200px) {
.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9 {
	float: left
}
.col-lg-12 {
	width: 100%
}
.col-lg-11 {
	width: 91.66666667%
}
.col-lg-10 {
	width: 83.33333333%
}
.col-lg-9 {
	width: 75%
}
.col-lg-8 {
	width: 66.66666667%
}
.col-lg-7 {
	width: 58.33333333%
}
.col-lg-6 {
	width: 50%
}
.col-lg-5 {
	width: 41.66666667%
}
.col-lg-4 {
	width: 33.33333333%
}
.col-lg-3 {
	width: 25%
}
.col-lg-2 {
	width: 16.66666667%
}
.col-lg-1 {
	width: 8.33333333%
}
.col-lg-pull-12 {
	right: 100%
}
.col-lg-pull-11 {
	right: 91.66666667%
}
.col-lg-pull-10 {
	right: 83.33333333%
}
.col-lg-pull-9 {
	right: 75%
}
.col-lg-pull-8 {
	right: 66.66666667%
}
.col-lg-pull-7 {
	right: 58.33333333%
}
.col-lg-pull-6 {
	right: 50%
}
.col-lg-pull-5 {
	right: 41.66666667%
}
.col-lg-pull-4 {
	right: 33.33333333%
}
.col-lg-pull-3 {
	right: 25%
}
.col-lg-pull-2 {
	right: 16.66666667%
}
.col-lg-pull-1 {
	right: 8.33333333%
}
.col-lg-pull-0 {
	right: auto
}
.col-lg-push-12 {
	left: 100%
}
.col-lg-push-11 {
	left: 91.66666667%
}
.col-lg-push-10 {
	left: 83.33333333%
}
.col-lg-push-9 {
	left: 75%
}
.col-lg-push-8 {
	left: 66.66666667%
}
.col-lg-push-7 {
	left: 58.33333333%
}
.col-lg-push-6 {
	left: 50%
}
.col-lg-push-5 {
	left: 41.66666667%
}
.col-lg-push-4 {
	left: 33.33333333%
}
.col-lg-push-3 {
	left: 25%
}
.col-lg-push-2 {
	left: 16.66666667%
}
.col-lg-push-1 {
	left: 8.33333333%
}
.col-lg-push-0 {
	left: auto
}
.col-lg-offset-12 {
	margin-left: 100%
}
.col-lg-offset-11 {
	margin-left: 91.66666667%
}
.col-lg-offset-10 {
	margin-left: 83.33333333%
}
.col-lg-offset-9 {
	margin-left: 75%
}
.col-lg-offset-8 {
	margin-left: 66.66666667%
}
.col-lg-offset-7 {
	margin-left: 58.33333333%
}
.col-lg-offset-6 {
	margin-left: 50%
}
.col-lg-offset-5 {
	margin-left: 41.66666667%
}
.col-lg-offset-4 {
	margin-left: 33.33333333%
}
.col-lg-offset-3 {
	margin-left: 25%
}
.col-lg-offset-2 {
	margin-left: 16.66666667%
}
.col-lg-offset-1 {
	margin-left: 8.33333333%
}
.col-lg-offset-0 {
	margin-left: 0
}
}
