
/* ===== template-parts/components/button/assets/styles.css ===== */
/* Component: Button */
.tt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--tt-font);
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: -0.01rem;
    text-transform: uppercase;
    /* Figma node I2348:26861;2348:27241 (Size=L, Primary): KHÔNG bo góc (radius 0) — không tự chế 0.5rem. */
    border-radius: 0;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.tt-btn__label {
    display: block;
}

.tt-btn__icon {
    display: block;
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
}

/* Icon đơn sắc: trên nút Primary (nền cam) phải đổi sang TRẮNG — icon gốc màu cam sẽ vô hình.
   filter brightness(0) invert(1) = trắng tinh bất kể màu nguồn. Outline giữ màu gốc (cam). */
.tt-btn--primary .tt-btn__icon {
    filter: brightness(0) invert(1);
}

.tt-btn--xl {
    padding: 1rem 4rem;
}

.tt-btn--l {
    padding: 0.75rem 1.5rem;
}

/* Figma Primary button fill = #fa6900 (orange-accent), không phải #f15a29. */
.tt-btn--primary {
    background: var(--tt-orange-accent);
    color: var(--tt-white);
}

.tt-btn--primary:hover {
    background: #FF7B1C;
}

.tt-btn--outline {
    background: transparent;
    color: var(--tt-orange-accent);
    border: 1px solid var(--tt-orange-accent);
}

.tt-btn--outline:hover {
    background: var(--tt-orange-accent);
    color: var(--tt-white);
}

@media (prefers-reduced-motion: reduce) {
    .tt-btn {
        transition: none;
    }
}

/* Mobile: button label font nhỏ hơn desktop (node I2348:27462;2348:36951 / I2348:27463;2348:36960: 14px/18.2px, ls -0.14px). */
/* Padding mobile = desktop (0.75rem 1.5rem) — không thay đổi. */
@media screen and (max-width: 639.98px) {
    .tt-btn {
        font-size: 0.875rem;
        line-height: 1.1375rem;
        letter-spacing: -0.0088rem;
        height: 2.63rem;
    }
}


/* ===== template-parts/components/tag/assets/styles.css ===== */
/* Component: Tag / chip */
.tt-tag {
    display: inline-flex;
    align-items: center;
    font-family: var(--tt-font);
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.05rem;
    letter-spacing: -0.0088rem;
    color: var(--Title-Orange, #FA6900);
    background: #FEEDE1;
    padding: 0.5rem 1rem;
    /* Figma Tag instance: radius 0.25rem (đo get_node_styles), không tự chế 0.375rem. */
    border-radius: 0.25rem;
    white-space: nowrap;
}

/* MOBILE (node I2348:27304;2348:26890, variant MB2):
   font 0.75rem/400/1.125rem/-0.0112rem, padding 0.375rem 0.75rem */
@media screen and (max-width: 639.98px) {
    .tt-tag {
        font-size: 0.75rem;
        line-height: 1.125rem;
        letter-spacing: -0.0112rem;
        padding: 0.375rem 0.75rem;
    }
}


/* ===== template-parts/ke-kho-thong-minh/section-banner/assets/styles.css ===== */
/* ============================================================== */
/* Section Banner — Kệ kho thông minh (Hero)                       */
/* Desktop: 1600×600 — full-bleed bg + dark gradient overlay       */
/*   breadcrumb + H1 anchored bottom-left, CTA bottom-right.        */
/* Figma desktop node: 2348:37117                                  */
/* Mobile: không có frame Figma — layout stack heuristic.          */
/* ============================================================== */

.section-kkt-banner {
  position: relative;
  width: 100%;
  height: 37.5rem; /* 600 / 16 */
  overflow: hidden;
  font-family: var(--tt-font, "Lexend Deca", sans-serif);
}
@media (min-width: 1024px) {
  .section-kkt-banner {
    height: calc(100vh - 7rem);
  }
  .section-kkt-banner__content {
    padding-bottom: 5rem !important ;
  }
}

/* ---- Background image (full-bleed) ---- */
.section-kkt-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.section-kkt-banner__bg-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center;
}

/* ---- Dark gradient overlay ---- */
.section-kkt-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(3, 13, 39, 0.07) 0%,
    rgba(4, 18, 50, 0.7) 100%
  );
}

/* ---- Content band, anchored bottom ---- */
.section-kkt-banner__content {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  padding: 2.5rem 6.25rem; /* 40 / 100 */
}

.section-kkt-banner__text {
  max-width: 52rem; /* 832 / 16 */
}

/* ---- Breadcrumb ---- */
.section-kkt-banner__breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.section-kkt-banner__crumb {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: -0.02rem;
  text-decoration: none;
}

.section-kkt-banner__crumb--home {
  color: #b8b8b8;
}

.section-kkt-banner__crumb--parent {
  margin-left: 0.625rem; /* 10 / 16 */
  color: rgba(255, 255, 255, 0.6);
}

.section-kkt-banner__crumb--current {
  margin-left: 0.625rem; /* 10 / 16 */
  color: var(--tt-white, #ffffff);
}

/* ---- Title (H1) ---- */
.section-kkt-banner__title {
  margin: 1.5rem 0 0; /* 24 / 16 từ breadcrumb */
  font-weight: 600;
  font-size: 3.0625rem; /* 49 / 16 */
  line-height: 3.9812rem; /* 63.7 / 16 */
  letter-spacing: -0.0919rem;
  text-transform: uppercase;
  color: var(--tt-white, #ffffff);
}

/* ---- CTA ---- */
.section-kkt-banner__cta {
  flex-shrink: 0;
  margin-left: 2rem;
}

/* ============================================================== */
/* Mobile (Figma node: 2348:37315)                                  */
/* Layout: image on top full-width ~10rem, white content block below */
/* ============================================================== */
@media screen and (max-width: 639.98px) {
  /* --- Section: auto height for stacked layout --- */
  .section-kkt-banner {
    height: auto;
  }

  /* --- Image block: relative flow, fixed height on top --- */
  .section-kkt-banner__bg {
    position: relative;
    width: 100%;
    height: 10rem;
    inset: auto;
  }

  /* --- Hide dark overlay on mobile (white content block below) --- */
  .section-kkt-banner__overlay {
    display: none;
  }

  /* --- Content block: relative flow, white background --- */
  .section-kkt-banner__content {
    position: relative;
    left: auto;
    bottom: auto;
    z-index: auto;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    padding: 1.5rem 1.25rem;
    background: #ffffff;
    padding-top: 0.88rem;
    padding-bottom: 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* --- Breadcrumb: dark text on white bg --- */
  .section-kkt-banner__breadcrumb {
    display: block;
    width: 100%;
  }

  .section-kkt-banner__crumb {
    display: inline;
    font-size: 0.875rem; /* 14 / 16 */
    line-height: 1.3125rem;
    letter-spacing: normal;
  }

  .section-kkt-banner__crumb--home {
    color: #888888;
  }

  .section-kkt-banner__crumb--parent {
    color: #888888;
    margin-left: 0.25rem;
  }

  .section-kkt-banner__crumb--current {
    color: #131313;
    margin-left: 0.25rem;
  }

  /* --- H1: dark #131313, spec 1.5rem / 600 / lh 1.95rem / ls -0.03rem / uppercase --- */
  .section-kkt-banner__title {
    margin-top: 1.25rem;
    font-size: 1.5rem; /* 24 / 16 */
    line-height: 1.95rem; /* 31.2 / 16 */
    letter-spacing: -0.03rem;
    color: #131313;
  }

  /* --- CTA: stack below title --- */
  .section-kkt-banner__cta {
    margin-left: 0;
    margin-top: 1.5rem;
    width: 100%;
  }

  .section-kkt-banner__cta .tt-btn {
    width: 100%;
    justify-content: center;
    padding: 0;
  }
}


/* ===== template-parts/ke-kho-thong-minh/section-video/assets/styles.css ===== */
/**
 * Section: Video — Kệ kho thông minh
 * Desktop node 2348:37125. Scoped, BEM, rem-only, no gap, no aspect-ratio.
 */

.section-kkt-video {
	width: 100%;
	box-sizing: border-box;
	padding: 6.25rem;
	font-family: var(--tt-font);
}

.section-kkt-video__card {
	position: relative;
	width: 100%;
	height: 43.75rem;
	overflow: hidden;
}

/* ── Thumbnail background ── */
.section-kkt-video__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.section-kkt-video__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ── Dual dark gradient overlay (Figma fills, top-most first) ── */
.section-kkt-video__media[data-kkt-video-media] {
	cursor: pointer;
}

.section-kkt-video__iframe,
.section-kkt-video__html-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
	background: #000;
}

.section-kkt-video__card.is-playing .section-kkt-video__overlay,
.section-kkt-video__card.is-playing .section-kkt-video__play {
	display: none;
}

.section-kkt-video__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background:
		linear-gradient(180deg, rgba(102, 102, 102, 0) 0%, rgba(0, 0, 0, 0.2) 100%),
		linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
}

/* ── Bottom bar ── */
.section-kkt-video__bar {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 2;
	width: 100%;
	box-sizing: border-box;
	padding: 2.5rem;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

.section-kkt-video__text {
	width: 48rem;
	max-width: 100%;
}

.section-kkt-video__title {
	margin: 0;
	font-family: var(--tt-font);
	font-weight: 600;
	font-size: 2.5rem;
	line-height: 3.25rem;
	letter-spacing: -0.05rem;
	text-transform: uppercase;
	color: var(--tt-white);
}

.section-kkt-video__desc {
	margin: 0.1875rem 0 0;
	font-family: var(--tt-font);
	font-weight: 300;
	max-width: 40.5rem;
	font-size: 1rem;
	line-height: 1.5rem;
	letter-spacing: -0.02rem;
	color: var(--tt-white);
}

/* ── Play button (white circle + orange triangle) ── */
.section-kkt-video__play {
	flex: 0 0 auto;
	margin-left: 1.375rem;
	width: 4rem;
	height: 4rem;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--tt-white);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.section-kkt-video__play:focus-visible {
	outline: 0.125rem solid var(--tt-orange-accent);
	outline-offset: 0.25rem;
}

.section-kkt-video__play:disabled {
	cursor: default;
	opacity: 0.75;
}

.section-kkt-video__play-icon {
	display: flex;
	width: 1.3469rem;
	height: 1.5714rem;
	margin-left: 0.1429rem; /* glyph optical centering (Figma offset) */
	color: var(--tt-orange-accent);
}

.section-kkt-video__play-svg {
	width: 100%;
	height: 100%;
	display: block;
}

/* ── Mobile: stacked column — thumbnail top, text below on white bg ── */
@media screen and (max-width: 639.98px) {
	/* Section: Figma padding [3, 1, 3, 1] */
	.section-kkt-video {
		padding: 3rem 1rem;
	}

	/* Card: auto-height column flow */
	.section-kkt-video__card {
		height: auto;
		overflow: visible;
	}

	/* Media block: exits absolute, full-bleed (break out of 1rem padding) */
	.section-kkt-video__media {
		position: relative;
		inset: auto;
		width: 100%;
		height: 11.7188rem;
		overflow: hidden;
	}

	.section-kkt-video__media::after {
		content: "";
		position: absolute;
		inset: 0;
		z-index: 1;
		pointer-events: none;
		background:
			linear-gradient(180deg, rgba(102, 102, 102, 0) 0%, rgba(0, 0, 0, 0.2) 100%),
			linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
	}

	.section-kkt-video__card.is-playing .section-kkt-video__media::after {
		display: none;
	}

	/* Desktop overlay is hidden; mobile overlay lives on the media thumbnail. */
	.section-kkt-video__overlay {
		display: none;
	}

	/* Bar: flow block below thumbnail, not absolute overlay */
	.section-kkt-video__bar {
		position: static;
		left: auto;
		bottom: auto;
		width: 100%;
		padding: 1.25rem 0 0;
		flex-direction: column;
		align-items: flex-start;
	}

	.section-kkt-video__text {
		width: 100%;
	}

	/* Typography: Figma node 2348:37335 — dark text on white */
	.section-kkt-video__title {
		font-size: 1.25rem;
		line-height: 2rem;
		letter-spacing: -0.0375rem;
		color: var(--tt-heading);
	}

	/* Typography: Figma node 2348:37336 */
	.section-kkt-video__desc {
		font-size: 0.875rem;
		line-height: 1.3125rem;
		letter-spacing: -0.0175rem;
		color: var(--tt-heading);
	}

	/* Play button: absolute center on thumbnail (relative to __card) */
	.section-kkt-video__play {
		position: absolute;
		z-index: 2;
		top: 5.8594rem; /* 11.7188rem / 2 */
		left: 50%;
		transform: translate(-50%, -50%);
		margin-left: 0;
		width: 2.5rem;
		height: 2.5rem;
	}

	.section-kkt-video__play-icon {
		width: 0.9821rem;
		height: 0.9821rem;
		margin-left: 0.0891rem;
	}
}


/* ===== template-parts/ke-kho-thong-minh/section-solutions/assets/styles.css ===== */
/* Section: Giải pháp chuyên biệt — Kệ kho thông minh (node 2348:37141) */

.section-kkt-solutions {
    width: 100%;
    padding: 6.25rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--tt-font);
}

/* ── Header ─────────────────────────────────────────────────────────────── */
.section-kkt-solutions__header {
    width: 100%;
    padding: 0 6.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-kkt-solutions__title {
    margin: 0;
    font-weight: 600;
    font-size: 2.5rem;
    line-height: 3.25rem;
    letter-spacing: -0.05rem;
    text-align: center;
    text-transform: uppercase;
    color: var(--tt-heading);
}

/* ── Tabs ───────────────────────────────────────────────────────────────── */
.section-kkt-solutions__tabs {
    width: 100%;
    margin-top: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #e7e7e7;
}

.section-kkt-solutions__tab {
    position: relative;
    z-index: 1;
    padding: 0.75rem 1rem 1rem;
    font-family: var(--tt-font);
    font-weight: 500;
    font-size: 0.75rem;
    line-height: 1.125rem;
    letter-spacing: -0.0112rem;
    text-transform: uppercase;
    color: var(--tt-heading);
    background: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.25s ease;
}

.section-kkt-solutions__tab.is-active {
    color: var(--tt-orange-accent);
}

@media (hover: hover) {
    .section-kkt-solutions__tab:hover {
        color: var(--tt-orange-accent);
    }
}

.section-kkt-solutions__tab.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.0625rem;
    z-index: 2;
    width: 100%;
    height: 0.1875rem;
    background: var(--tt-orange-accent);
}

.section-kkt-solutions__tab:focus-visible {
    outline: 0.125rem solid var(--tt-orange-accent);
    outline-offset: 0.125rem;
}

/* ── Content / panels ───────────────────────────────────────────────────── */
.section-kkt-solutions__content {
    width: 100%;
    margin-top: 1.875rem;
    padding: 0 6.25rem;
}

.section-kkt-solutions__panel {
    display: none;
    flex-direction: row;
    align-items: stretch;
}

.section-kkt-solutions__panel.is-active {
    display: flex;
}

/* ── Cột trái: text + CTA ───────────────────────────────────────────────── */
.section-kkt-solutions__info {
    width: 49.875rem;
    flex-shrink: 0;
    background: #f8f8f8;
    padding: 3.75rem 3.1875rem 3.75rem 3.5rem;
    display: flex;
    flex-direction: column;
}

.section-kkt-solutions__eyebrow {
    margin: 0;
    display: flex;
    align-items: center;
}

.section-kkt-solutions__dot {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    background: var(--tt-heading);
    flex-shrink: 0;
}

.section-kkt-solutions__eyebrow-label {
    margin-left: 0.5rem;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.875rem;
    text-transform: uppercase;
    color: var(--tt-heading);
}

.section-kkt-solutions__heading-block {
    margin-top: 3.75rem;
    display: flex;
    flex-direction: column;
}

.section-kkt-solutions__panel-heading {
    margin: 0;
    font-weight: 600;
    font-size: 1.9375rem;
    line-height: 2.5187rem;
    letter-spacing: -0.0387rem;
    text-transform: uppercase;
    color: var(--tt-heading);
}

.section-kkt-solutions__desc {
    margin: 1.25rem 0 0;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: -0.02rem;
    color: var(--tt-heading);
}

.section-kkt-solutions__cta {
    margin-top: auto;
    padding-top: 5rem;
}

/* ── Cột phải: slider ảnh ───────────────────────────────────────────────── */
.section-kkt-solutions__media {
    flex: 1 1 auto;
    min-width: 0;
    margin-left: 0.75rem;
    display: flex;
    flex-direction: column;
}

.section-kkt-solutions__main {
    position: relative;
    width: 100%;
    height: 19.3274rem;
    overflow: hidden;
}

.section-kkt-solutions__main-swiper {
    width: 100%;
    height: 100%;
}

.section-kkt-solutions__slide {
    width: 100%;
    height: 100%;
}

.section-kkt-solutions__slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section-kkt-solutions__nav {
    position: absolute;
    left: 1.37rem;
    right: 1.37rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-kkt-solutions__nav-btn {
    width: 2.75rem;
    height: 2.75rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: var(--tt-white);
    border: none;
    cursor: pointer;
    transition: opacity 0.25s ease;
}

.section-kkt-solutions__nav-btn + .section-kkt-solutions__nav-btn {
    margin-left: 0;
}

@media (hover: hover) {
    .section-kkt-solutions__nav-btn:hover {
        background: var(--tt-orange-accent);
    }

    .section-kkt-solutions__nav-btn:hover img {
        filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(1deg) brightness(108%) contrast(102%);
    }
}

/* Slide đầu/cuối → nút điều hướng bị disable → mờ, không bấm được */
.section-kkt-solutions__nav-btn.swiper-button-disabled {
    opacity: 0.4;
    cursor: default;
    pointer-events: none;
}

.section-kkt-solutions__nav-btn:focus-visible {
    outline: 0.125rem solid var(--tt-orange-accent);
    outline-offset: 0.125rem;
}

.section-kkt-solutions__nav-icon {
    width: 1.375rem;
    height: 1.375rem;
    display: block;
}

.section-kkt-solutions__nav-btn--next .section-kkt-solutions__nav-icon {
    transform: scaleX(-1);
}

/* ── Thumbnails ─────────────────────────────────────────────────────────── */
.section-kkt-solutions__thumbs {
    width: 100%;
    margin-top: 0.75rem;
}

.section-kkt-solutions__thumb {
    position: relative;
    height: 9.7544rem;
    overflow: hidden;
    cursor: pointer;
    background: lightgray 50% / cover no-repeat;
}

.section-kkt-solutions__thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(211, 211, 211, 0.45);
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.section-kkt-solutions__thumb.swiper-slide-thumb-active::after {
    opacity: 0;
}

@media (hover: hover) {
    .section-kkt-solutions__thumb:hover::after {
        opacity: 0;
    }
}

.section-kkt-solutions__thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50%;
    background: lightgray 50% / cover no-repeat;
    display: block;
}

/* ── Mobile (frame 2348:37337, 23.4375rem) ──────────────────────────────── */
@media screen and (max-width: 639.98px) {
    .section-kkt-solutions {
        padding: 0 0 1rem;
    }
    .section-kkt-solutions__nav-btn{
        width: 2.5rem;
        height: 2.5rem;
    }

    /* Mobile: tap không đổi cam — giữ nền trắng + icon nguyên màu */
    .section-kkt-solutions__nav-btn:hover,
    .section-kkt-solutions__nav-btn:active {
        background: var(--tt-white);
    }
    .section-kkt-solutions__nav-btn:hover img,
    .section-kkt-solutions__nav-btn:active img {
        filter: none;
    }

    .section-kkt-solutions__header,
    .section-kkt-solutions__content {
        padding: 0 1rem;
    }
    .section-kkt-solutions__nav {
        left: 0.56rem;
        right: 0.56rem;
    }

    .section-kkt-solutions__content {
        margin-top: 1.5rem;
    }

    .section-kkt-solutions__title {
        font-size: 1.25rem;
        line-height: 2rem;
        letter-spacing: -0.0375rem;
    }

    .section-kkt-solutions__tabs {
        margin-top: 1.5rem;
        padding-inline: var(--kkt-solutions-tab-edge-space, 0);
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;

    }

    .section-kkt-solutions__tabs::-webkit-scrollbar {
        display: none;
    }

    .section-kkt-solutions__tab {
        flex-shrink: 0;
        font-size: 0.625rem;
        line-height: 0.9375rem;
        letter-spacing: -0.0094rem;
    }

    .section-kkt-solutions__panel {
        flex-direction: column;
    }

    .section-kkt-solutions__eyebrow {
        display: none;
    }

    .section-kkt-solutions__info {
        display: contents;
    }

    .section-kkt-solutions__heading-block {
        margin-top: 0;
    }

    .section-kkt-solutions__panel-heading {
        font-size: 1rem;
        line-height: 1.4rem;
        letter-spacing: 0;
    }

    .section-kkt-solutions__desc {
        margin-top: 0.625rem;
        font-size: 0.875rem;
        line-height: 1.3125rem;
        letter-spacing: -0.0175rem;
    }

    .section-kkt-solutions__cta {
        order: 1;
        padding-top: 1.25rem;
    }

    .section-kkt-solutions__cta .tt-btn {
        width: 100%;
    }

    .section-kkt-solutions__media {
        margin-left: 0;
        margin-top: 1.25rem;
    }

    .section-kkt-solutions__main {
        height: 11.32rem;
    }

    .section-kkt-solutions__thumbs {
        margin-top: 0.25rem;
    }

    .section-kkt-solutions__thumb {
        height: 5.7733rem;
    }
}


/* ===== template-parts/ke-kho-thong-minh/section-products/assets/styles.css ===== */
/**
 * Section: Products — Kệ kho thông minh (node 2348:37142)
 * World-map bg (bleed) + Swiper product carousel + progress pagination.
 */

.section-kkt-products {
  position: relative;
  overflow: hidden;
  padding: 6.25rem;
  background-color: var(--tt-white);
  font-family: var(--tt-font);
}

/* ---- World-map background (bleeds left/top) ---- */
.section-kkt-products__bg {
  position: absolute;
  left: -17.6875rem;
  top: -3.5rem;
  width: 130.4858rem;
  height: 52.2759rem;
  z-index: 0;
  pointer-events: none;
}

.section-kkt-products__bg-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-kkt-products__inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* ---- Heading ---- */
.section-kkt-products__title {
  margin: 0;
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 3.25rem;
  letter-spacing: -0.05rem;
  text-align: center;
  text-transform: uppercase;
  color: var(--tt-heading);
}

/* ---- Carousel ---- */
.section-kkt-products__carousel {
  margin-top: 3rem;
}

.section-kkt-products__swiper {
  width: 100%;
  overflow: hidden;
}

.section-kkt-products__track {
  display: flex;
  align-items: stretch;
}

/* ---- Card ---- */
.section-kkt-products__slide {
  position: relative;
  --kkt-products-gap-total: 3.75rem;
  --kkt-products-active-width: min(31.25rem, 42%);
  --kkt-products-default-width: calc((100% - var(--kkt-products-gap-total)) / 4);
  --kkt-products-compact-width: calc((100% - var(--kkt-products-active-width) - var(--kkt-products-gap-total)) / 3);
  flex: 0 0 var(--kkt-products-default-width);
  width: var(--kkt-products-default-width) !important;
  height: 28.75rem;
  z-index: 1;
  transition:
    width 500ms cubic-bezier(0.47, 0, 0.01, 1.01),
    flex-basis 500ms cubic-bezier(0.47, 0, 0.01, 1.01);
}

.section-kkt-products__card {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
  transition: width 500ms cubic-bezier(0.47, 0, 0.01, 1.01);
}

.section-kkt-products__card-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section-kkt-products__card-img::after {
  position: absolute;
  inset: 0;
  content: "";
  background-color: rgba(14, 38, 94, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 400ms cubic-bezier(0.47, 0, 0.01, 1.01);
}

.section-kkt-products__card-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-kkt-products__card-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 1rem;
  background-color: #f2f3f5;
  overflow: hidden;
  transition: all 400ms cubic-bezier(0.47, 0, 0.01, 1.01);
}

.section-kkt-products__card-row {
  display: flex;
  align-items: center;
}

.section-kkt-products__card-titlewrap {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
}

.section-kkt-products__card-title {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.4625rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-transform: uppercase;
  color: var(--tt-heading);
}

.section-kkt-products__card-desc {
  display: -webkit-box;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  color: rgba(6, 21, 56, 0.6);
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: -0.013125rem;
  transition: ease all 0.5s;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.section-kkt-products__card-tag {
  flex: 0 0 auto;
  margin-left: 0.5rem;
}

/* HOT badge — đo từ node Frame 2147264654 (đỏ #ae2c2c, không phải tt-tag mặc định) */
.section-kkt-products__card-tag .tt-tag {
  padding: 0.1875rem 0.625rem;
  border-radius: 0.125rem;
  background: #ae2c2c;
  color: var(--tt-white);
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 0.975rem;
  letter-spacing: normal;
  text-transform: uppercase;
}

.section-kkt-products__card-chevron {
  flex: 0 0 auto;
  margin-left: 1.5rem;
  width: 1.25rem;
  height: 1.25rem;
  color: #0e265e;
}

.section-kkt-products__card-chevron svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ---- Pagination (progress bars + counter + nav) ---- */
.section-kkt-products__pagination {
  display: flex;
  align-items: center;
  margin-top: 1.875rem;
  justify-content: space-between;
}

.section-kkt-products__progress {
  display: flex;
  align-items: center;
}

.section-kkt-products__bars {
  display: flex;
  align-items: center;
}

.section-kkt-products__bar {
  width: 2.5rem;
  height: 0.1875rem;
  background-color: rgba(19, 19, 19, 0.4);
  transition:
    width 0.3s ease,
    background-color 0.3s ease;
}

.section-kkt-products__bar + .section-kkt-products__bar {
  margin-left: 0.375rem;
}

.section-kkt-products__bar.is-active {
  width: 6.25rem;
  background-color: var(--tt-orange-accent);
}

.section-kkt-products__counter {
  margin-left: 0.75rem;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.05rem;
  letter-spacing: -0.0088rem;
  color: var(--tt-heading);
}

.section-kkt-products__nav {
  display: flex;
  align-items: center;
  margin-left: 18.1875rem;
}

.section-kkt-products__nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: none;
  background-color: #f2f3f5;
  color: var(--tt-heading);
  cursor: pointer;
}

.section-kkt-products__nav-btn + .section-kkt-products__nav-btn {
  margin-left: 0.625rem;
}
.section-kkt-products__nav-btn
  + .section-kkt-products__nav-btn:not(.swiper-button-disabled):hover {
  background: var(--tt-orange-accent);
}
.section-kkt-products__nav-btn
  + .section-kkt-products__nav-btn:not(.swiper-button-disabled):hover svg {
  color: white;
}

.section-kkt-products__nav-btn svg {
  display: block;
  width: 1.75rem;
  height: 1.75rem;
}

.section-kkt-products__nav-btn--next svg {
  transform: scaleX(-1);
}

.section-kkt-products__nav-btn.swiper-button-disabled {
  opacity: 0.4;
  background-color: #f2f3f5;
  color: var(--tt-heading);
  cursor: default;
}

@media screen and (min-width: 1024px) {
  .section-kkt-products__track.is-hovering
    .section-kkt-products__slide.is-hover-group {
    flex-basis: var(--kkt-products-compact-width);
    width: var(--kkt-products-compact-width) !important;
  }

  .section-kkt-products__track.is-hovering
    .section-kkt-products__slide.is-hover-group.is-expanded {
    flex-basis: var(--kkt-products-active-width);
    width: var(--kkt-products-active-width) !important;
    z-index: 5;
  }

  .section-kkt-products__slide.is-expanded
    .section-kkt-products__card-img::after {
    opacity: 1;
  }

  .section-kkt-products__slide.is-expanded .section-kkt-products__card-desc {
    max-height: 7.5rem;
    margin-top: 0.625rem;
    opacity: 1;
    transition-delay: 0.5s;
  }
}

/* ---- Mobile (node 2348:37371) ---- */
@media screen and (max-width: 639.98px) {
  .section-kkt-products {
    padding: 3rem 1rem 3rem;
    padding-bottom: 0;
  }
  .section-kkt-products__bars {
    display: none;
  }
  .section-kkt-products__counter {
    margin-left: 0;
  }

  /* World-map bg hidden on mobile */
  .section-kkt-products__bg {
    display: none;
  }

  /* Section heading — 1.25rem/600/center/uppercase/#131313 */
  .section-kkt-products__title {
    font-size: 1.25rem;
    line-height: 2rem;
    letter-spacing: -0.0375rem;
  }

  .section-kkt-products__carousel {
    margin-top: 1.5rem;
  }

  /* Force one slide per view on mobile */
  .section-kkt-products__swiper .swiper-slide {
    flex-basis: 100%;
    width: 100% !important;
  }

  /* Card height matches Figma mobile node (28.75rem) */
  .section-kkt-products__card {
    height: 28.75rem;
  }

  /* Card content bar — auto height so body text can appear */
  .section-kkt-products__card-bar {
    padding: 0.875rem;
  }

  /* Card title — 1rem/600/lh1.3rem/uppercase/#131313 */
  .section-kkt-products__card-title {
    font-size: 1rem;
    line-height: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--tt-heading);
  }

  .section-kkt-products__card-desc {
    display: -webkit-box;
    max-height: 7.875rem;
    margin: 0.625rem 0 0;
    overflow: hidden;
    opacity: 1;
    color: #6b7280;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.25rem;
    letter-spacing: 0;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;

    color: var(--Body-XanhNavi-60, rgba(6, 21, 56, 0.6));
    text-align: justify;

    /* PC/Body/14/14-R-150 */
    font-family: "Lexend Deca";
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 1.3125rem */
    letter-spacing: -0.01313rem;
  }

  .section-kkt-products__card-tag .tt-tag {
    font-size: 0.75rem;
    line-height: 0.975rem;
  }

  /* Nav buttons — 2.5rem × 2.5rem (Figma node) */
  .section-kkt-products__nav-btn {
    width: 2.5rem;
    height: 2.5rem;
  }
  .section-kkt-products__nav-btn svg {
    width: 2rem;
  
  }

  .section-kkt-products__nav-btn
    + .section-kkt-products__nav-btn:not(.swiper-button-disabled):hover {
    background-color: #f2f3f5;
  }

  .section-kkt-products__nav-btn
    + .section-kkt-products__nav-btn:not(.swiper-button-disabled):hover svg {
    color: var(--tt-heading);
  }

  /* Mobile: khi bấm (active) KHÔNG đổi sang màu cam — giữ nguyên nền xám */
  .section-kkt-products__nav-btn:not(.swiper-button-disabled):active {
    background-color: #f2f3f5;
  }

  .section-kkt-products__nav-btn:not(.swiper-button-disabled):active svg {
    color: var(--tt-heading);
  }

  /* Push nav buttons to the right */
  .section-kkt-products__nav {
    margin-left: auto;
  }
}


/* ===== template-parts/ke-kho-thong-minh/section-consult-form/assets/styles.css ===== */
/* =========================================================================
   Section Consult Form — Kệ kho thông minh (node 2348:37186)
   Desktop-first. Breakpoint: 639.98px. rem only (1px allowed for borders).
   White bg, 2 columns: LEFT form content + RIGHT two overlapping building photos.
   Form is hand-coded HTML (.kkt-form); scripts.js submits to the CF7 REST endpoint.
   No mobile Figma frame → mobile layout is heuristic (stack, content first).
   ========================================================================= */

.section-kkt-form {
    background-color: #ffffff;
}

.section-kkt-form__inner {
    display: flex;
    align-items: flex-start;
    max-width: 100rem;
    margin: 0 auto;
    padding: 0 6.25rem 6.25rem 6.25rem;
    box-sizing: border-box;
}

/* --- LEFT: content ------------------------------------------------------- */
.section-kkt-form__content {
    flex: 1 1 auto;
    min-width: 0;
    margin-top: 3.75rem;
    font-family: "Lexend Deca", sans-serif;
}

.section-kkt-form__heading {
    margin: 0;
    font-family: "Lexend Deca", sans-serif;
    font-weight: 600;
    font-size: 2.5rem;
    line-height: 3.25rem;
    letter-spacing: -0.05rem;
    text-transform: uppercase;
    color: #131313;
}

.section-kkt-form__desc {
    margin: 0.75rem 0 0;
    font-family: "Lexend Deca", sans-serif;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: -0.02rem;
    color: #000;
}

/* =========================================================================
   Hand-coded form (.kkt-form) — fields: your-name, your-email,
   your-message (textarea). No gap → margins on children. rem only.
   ========================================================================= */
.kkt-form {
    width: 100%;
    margin-top: 1.75rem;
}

.kkt-form__fields {
    width: 100%;
}

.kkt-form__field {
    min-width: 0;
}

.kkt-form__field + .kkt-form__field {
    margin-top: 0.875rem;
}

/* --- Controls ----------------------------------------------------------- */
.kkt-form__control {
    display: block;
    width: 100%;
    box-sizing: border-box;
    background: var(--Neutral-Xm-04, #f8f8f8);
    border: 1px solid transparent;
    border-radius: 0.25rem;
    padding: 1.0625rem 0.875rem;
    font-family: "Lexend Deca", sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.05rem;
    letter-spacing: -0.00875rem;
    color: #131313;
}

.kkt-form__control::placeholder {
    color: var(--Body-Black-40, rgba(19, 19, 19, 0.4));
    opacity: 1;
}

.kkt-form__control:focus-visible {
    outline: none;
    border-color: none;
}

/* Textarea (Mô tả chi tiết nhu cầu của bạn) — Figma height 6.375rem */
.kkt-form__control--textarea {
    min-height: 6.375rem;
    resize: vertical;
}

/* --- Actions: terms + submit -------------------------------------------- */
.kkt-form__actions {
    margin-top: 1.75rem;
}

.kkt-form__terms {
    margin: 0;
    font-family: "Lexend Deca", sans-serif;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: -0.02rem;
    color: #131313;
}

.kkt-form__terms--standalone {
    margin-top: 1.75rem;
}

.kkt-form__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: fit-content;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    margin: 1rem auto 0;
    padding: 1rem 4rem;
    border: none;
    border-radius: 0.25rem;
    background-color: #ff7b1c;
    color: #ffffff;
    cursor: pointer;
    font-family: "Lexend Deca", sans-serif;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: -0.01rem;
    text-transform: uppercase;
    transition: opacity 0.2s ease;
}

.kkt-form__submit::after {
    content: "";
    flex: 0 0 1rem;
    width: 1rem;
    height: 1rem;
    background-image: url("https://vinatechgroup.vn/wp-content/themes/okhub-theme/template-parts/ke-kho-thong-minh/section-consult-form/assets/ic-arrow-right-white.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1rem 1rem;
}

.kkt-form__submit:hover {
    opacity: 0.9;
}

.kkt-form__submit:focus-visible {
    outline: 0.125rem solid #131313;
    outline-offset: 0.125rem;
}

/* Submitting state (JS toggles .is-submitting) */
.kkt-form.is-submitting .kkt-form__submit {
    opacity: 1;
    pointer-events: none;
    background-color: #ff7b1c;
    cursor: wait;
    text-transform: none;
}

.kkt-form.is-submitting .kkt-form__submit::after {
    display: none;
}

.kkt-form__submit:disabled {
    cursor: wait;
}

.kkt-form.is-submitting .kkt-form__submit-text::after {
    content: "";
    display: inline-block;
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
    vertical-align: -0.125rem;
    border: 0.125rem solid rgba(255, 255, 255, 0.5);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: kkt-form-spin 0.7s linear infinite;
}

@keyframes kkt-form-spin {
    to {
        transform: rotate(360deg);
    }
}

/* --- Validation tips ---------------------------------------------------- */
.kkt-form__tip {
    display: block;
    margin-top: 0.25rem;
    font-family: "Lexend Deca", sans-serif;
    font-weight: 400;
    font-size: 0.8125rem;
    line-height: 1.2rem;
    color: #e02b2b;
}

.kkt-form__tip:empty {
    display: none;
}

.kkt-form__field--invalid .kkt-form__control {
    border: 1px solid #e02b2b;
}

/* --- Response / success notice (bottom — per Figma annotation) ----------- */
.kkt-form__response {
    margin: 1.75rem 0 0;
    font-family: "Lexend Deca", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: -0.02rem;
}

.kkt-form__response--success {
    color: #2db24a;
}

.kkt-form__response--error {
    color: #e02b2b;
}

/* --- RIGHT: building photos --------------------------------------------- */
.section-kkt-form__media {
    position: relative;
    flex: 0 0 39.6875rem;
    width: 39.6875rem;
    height: 41.875rem;
    margin-left: 5rem;
}

.section-kkt-form__img {
    display: block;
    object-fit: cover;
}

.section-kkt-form__img--1 {
    position: absolute;
    left: 0;
    top: 0;
    width: 34.6875rem;
    height: 33.6875rem;
}

.section-kkt-form__img--2 {
    position: absolute;
    left: 14.1875rem;
    top: 24.5625rem;
    width: 25.5rem;
    height: 16.9375rem;
    border: 0.75rem solid #ffffff;
    box-sizing: border-box;
}

/* =========================================================================
   Mobile (<= 639.98px) — Figma node 2348:37374.
   Single column. Building photos HIDDEN. Padding 2.5rem 1rem.
   ========================================================================= */
@media screen and (max-width: 639.98px) {
    .section-kkt-form__inner {
        flex-direction: column;
        align-items: stretch;
        padding: 2.5rem 1rem;
    }
    .section-kkt-form__content{
        margin-top: 0;
    }

    /* Building image column hidden on mobile — no image in Figma mobile frame */
    .section-kkt-form__media {
        display: none;
    }

    /* H2: 1.25rem / 600 / uppercase / #131313 — Figma node 2348:37376 */
    .section-kkt-form__heading {
        font-size: 1.25rem;
        line-height: 2rem;
        letter-spacing: -0.0375rem;
        text-align: center;
    }

    /* Description: 0.875rem / 300 / center — Figma node 2348:37377 */
    .section-kkt-form__desc {
        font-size: 0.875rem;
        line-height: 1.3125rem;
        letter-spacing: -0.0175rem;
        text-align: center;
        color: #131313;
    }

    /* Form top margin: 1.25rem from Form Description (Figma child_margin) */
    .kkt-form {
        margin-top: 1.25rem;
    }

    /* Actions top margin: 1.25rem from Form Fields (Figma child_margin) */
    .kkt-form__actions {
        margin-top: 1.25rem;
    }

    /* Terms: 0.875rem / 300 — Figma node 2348:37385 */
    .kkt-form__terms {
        font-size: 0.875rem;
        line-height: 1.3125rem;
        letter-spacing: -0.0175rem;
    }

    /* Submit button: 0.875rem / 500 — Figma node I2348:37386;2348:36960 */
    .kkt-form__submit {
        font-size: 0.875rem;
        line-height: 1.1375rem;
        letter-spacing: -0.0088rem;
        height: 2.62rem;
        border-radius: 0;
        background: var(--Title-Orange, #FA6900);
    }
}


/* ===== template-parts/ke-kho-thong-minh/section-documents/assets/styles.css ===== */
/* ============================================================== */
/* Section Documents — Kệ kho thông minh (Tài liệu kỹ thuật)       */
/* Desktop node: 2348:37204 — clone section-sp-documents carousel. */
/*   Head (heading | nav) + Swiper 2 card/trang.                  */
/* ============================================================== */

.section-kkt-documents {
	box-sizing: border-box;
	width: 100%;
	padding: 0 6.25rem 6.25rem;
	background-color: var(--tt-white, #ffffff);
	font-family: var(--tt-font, "Lexend Deca", sans-serif);
}

.section-kkt-documents__inner {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	width: 100%;
}

/* ── Head: heading-group | nav ─────────────────────────────────── */
.section-kkt-documents__head {
	display: flex;
	flex-direction: row;
	align-items: end;
	justify-content: space-between;
}

.section-kkt-documents__heading-group {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.section-kkt-documents__title {
	margin: 0;
	font-weight: 600;
	font-size: 2.5rem;
	line-height: 3.25rem;
	letter-spacing: -0.05rem;
	text-transform: uppercase;
	color: var(--tt-heading, #131313);
}

.section-kkt-documents__desc {
	margin: 0.875rem 0 0;
	font-weight: 300;
	font-size: 1rem;
	line-height: 1.5rem;
	letter-spacing: -0.02rem;
	color: var(--tt-heading, #131313);
}

/* ── Nav prev/next ─────────────────────────────────────────────── */
.section-kkt-documents__nav {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	margin-left: 2rem;
}

.section-kkt-documents__nav-btn + .section-kkt-documents__nav-btn {
	margin-left: 0.625rem;
}

.section-kkt-documents__counter {
	display: none;
	color: var(--tt-heading, #131313);
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 150%;
}

.section-kkt-documents__nav-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	padding: 0;
	border: 0;
	border-radius: 0;
	background-color: var(--Neutral-Xm, #f2f3f5);
	color: var(--tt-heading, #131313);
	cursor: pointer;
	transition: background-color 0.25s ease, color 0.25s ease;
}

.section-kkt-documents__nav-btn:focus-visible {
	outline: 0.125rem solid var(--tt-orange-accent, #fa6900);
	outline-offset: 0.125rem;
}

.section-kkt-documents__nav-btn svg {
	display: block;
	width: 2rem;
	height: 2rem;
}

.section-kkt-documents__nav-btn--next svg {
	transform: scaleX(-1);
}

.section-kkt-documents__nav-btn:not(.swiper-button-disabled):not(.section-kkt-documents__nav-btn--disabled):not(:disabled):hover {
	background-color: var(--tt-orange-accent, #fa6900);
	color: var(--tt-white, #ffffff);
}

.section-kkt-documents__nav-btn.swiper-button-disabled,
.section-kkt-documents__nav-btn--disabled,
.section-kkt-documents__nav-btn:disabled {
	background-color: #d9d9d9;
	color: var(--tt-text-muted, #4b4a4a);
	opacity: 0.4;
	cursor: default;
	pointer-events: none;
}

/* ── Carousel viewport ─────────────────────────────────────────── */
.section-kkt-documents__carousel {
	margin-top: 2.5rem;
	width: 100%;
}

.section-kkt-documents__swiper {
	width: 100%;
	overflow: hidden;
}

.section-kkt-documents__swiper .swiper-wrapper {
	align-items: stretch;
}

.section-kkt-documents__swiper .swiper-slide {
	height: auto;
}

.section-kkt-documents__swiper .swiper-slide.section-kkt-documents__page {
	box-sizing: border-box;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem;
	align-items: stretch;
}

/* ── Card tài liệu (Media) ─────────────────────────────────────── */
.section-kkt-documents__card {
	box-sizing: border-box;
	display: flex;
	flex-direction: row;
	align-items: center;
	height: auto;
	padding-right: 1.875rem;
	background: #f2f2f2;
}

.section-kkt-documents__card-media {
	position: relative;
	flex: 0 0 18.125rem;
	width: 18.125rem;
	height: 14.3125rem;
	overflow: hidden;
}

.section-kkt-documents__card:hover .section-kkt-documents__card-image {
	transform: scale(1.1);
	transition: transform 0.3s ease-in-out;
}

.section-kkt-documents__card-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Body: text + nút */
.section-kkt-documents__card-body {
	flex: 1 1 auto;
	min-width: 0;
	margin-left: 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.section-kkt-documents__card-text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
}

.section-kkt-documents__card-title {
	margin: 0;
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 1.625rem;
	letter-spacing: -0.0187rem;
	text-transform: uppercase;
	color: var(--tt-heading, #131313);
}

.section-kkt-documents__card-desc {
	margin: 0.625rem 0 0;
	font-weight: 300;
	font-size: 1rem;
	line-height: 1.5rem;
	letter-spacing: -0.02rem;
	color: var(--tt-heading, #131313);
}

.section-kkt-documents__card-action {
	margin-top: 2.5rem;
}

/* Không có file → nút mờ đi, không cho click */
.section-kkt-documents__card-action--disabled .tt-btn {
	opacity: 0.6;
	pointer-events: none;
	cursor: default;
}

/* Button size override (Figma Size=L = 0.875rem, không phải global 1rem) */
.section-kkt-documents .tt-btn--l {
	font-size: 0.875rem;
	line-height: 1.1375rem;
	letter-spacing: -0.0088rem;
}

/* Icon mũi tên xoay xuống dưới (attachment 882 là mũi tên left) */
.section-kkt-documents .tt-btn__icon {
	transform: rotate(90deg);
	transform-origin: center;
}

/* ============================================================== */
/* Mobile (≤ 639.98px)                                             */
/* ============================================================== */
@media screen and (max-width: 639.98px) {
	.section-kkt-documents {
		padding: 0 1rem 2.5rem;
	}

	.section-kkt-documents__desc {
		display: none;
	}

	.section-kkt-documents__head {
		display: contents;
	}

	.section-kkt-documents__heading-group {
		order: 1;
		align-items: center;
	}

	.section-kkt-documents__nav {
		order: 3;
		display: flex;
		width: 100%;
		margin-left: 0;
		margin-top: 1.5rem;
	}

	.section-kkt-documents__counter {
		display: block;
		margin-right: auto;
	}

	.section-kkt-documents__nav-btn {
		width: 2.5rem;
		height: 2.5rem;
		min-width: 2.5rem;
		flex: 0 0 2.5rem;
		line-height: 1;
	}

	.section-kkt-documents__nav-btn svg {
		width: 1.8rem;
		height: 1.8rem;
		flex-shrink: 0;
	}

	/* H2 — 1.25rem/2rem uppercase, center */
	.section-kkt-documents__title {
		font-size: 1.25rem;
		line-height: 2rem;
		letter-spacing: -0.0375rem;
		text-align: center;
	}

	.section-kkt-documents__carousel {
		order: 2;
		margin-top: 1.25rem;
	}

	.section-kkt-documents__swiper .swiper-wrapper {
		align-items: flex-start;
	}

	.section-kkt-documents__swiper .swiper-slide,
	.section-kkt-documents__card {
		height: auto !important;
	}

	.section-kkt-documents__swiper .swiper-slide.section-kkt-documents__page {
		display: flex;
		flex-direction: column;
		gap: 1rem;
		height: auto !important;
	}

	.section-kkt-documents__card {
		flex-direction: column;
		align-items: stretch;
		padding-right: 0;
	}

	.section-kkt-documents__card-media {
		flex: 0 0 auto;
		width: 100%;
		height: 10.125rem;
	}

	.section-kkt-documents__card-image {
		border-radius: 0;
		border-top-left-radius: 0.25rem;
		border-bottom-right-radius: 0.25rem;
	}

	.section-kkt-documents__card-body {
		margin-left: 0;
		margin-top: 0.88rem;
	}

	.section-kkt-documents__card-title {
		font-size: 1rem;
		line-height: 1.5rem;
		padding-left: 0.88rem;
		padding-right: 0.88rem;
	}

	.section-kkt-documents__card-desc {
		font-size: 0.875rem;
		line-height: 1.3125rem;
		letter-spacing: -0.0175rem;
		margin-top: 0.5rem;
		padding-left: 0.88rem;
		padding-right: 0.88rem;
	}

	.section-kkt-documents__card-action {
		margin-top: 1.5rem;
		padding-left: 0.88rem;
		padding-bottom: 1rem;
	}
}


/* ===== template-parts/ke-kho-thong-minh/assets/styles.css ===== */
/* Page: Kệ kho thông minh — aggregate stylesheet */

/* Shared components */



/* Sections */







@media screen and (max-width: 639.98px) {
  .breadcrumb-nav__sep {
    margin: 0 0.3rem 0 0.3rem;
  }
}

