.laser-wrapper {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

/* BOX CHUNG */
.laser-item {
	background: #f6f9fc;
	border-radius: 14px;
	padding: 20px;
	height: 100%;
}

.laser-item1 {
	background: #f2f6fa;
}

.laser-item1 h4, .laser-item1 p {
	padding: 10px;
	color: var(--color-black);
}

.laser-item1 p {
	font-size: 14px;
	margin-top: -20px;
	font-weight: 400;
}

.laser-img img {
	width: 100%;
	height: 200px;
	display: block;
	border-radius: 8px 8px 0 0;
	object-fit: cover;
}

/* TEXT */
.laser-item h3,
.laser-item h4 {
	color: var(--Navy-Blue);
	margin-bottom: 10px;
	line-height: 1.3;
}

.laser-item p,
.laser-item li {
	font-size: 14px;
	color: #555;
	line-height: 1.6;
}

.laser-item ul {
	padding-left: 18px;
	margin: 10px 0;
}

/* BOX 1 */
.laser-intro {
	background: var(--color-white);
	border: 1px solid var(--Navy-Blue);
}

.laser-intro img {
	margin-top: 15px;
	width: 100%;
	border-radius: 10px;
}

/* BOX 4 */
.laser-guide {
	background: #eef5fb;
}

.laser-guide img {
	margin-top: 15px;
	width: 100%;
	border-radius: 10px;
}

/* BUTTON */
.laser-btn {
	display: block;
	background: var(--Navy-Blue);
	color: var(--color-white);
	padding: 10px 14px;
	border-radius: 8px;
	text-align: center;
	margin: 8px 0;
	font-size: 14px;
	transition: 0.3s;
}

/* Tab sản phẩm */
.tab_sp h4 {
	position: absolute;
	top: 5px;
	height: 38px;
	font-size: 25px;
	font-weight: 600;
	text-transform: uppercase;
	margin: 0;
	white-space: nowrap;
	color: var(--Navy-Blue);
}

/* Dãy tab bên phải */
.tab_sp .nav {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-end;
}

/* Từng tab */
.tab_sp .tab {
	border: 2px solid var(--Navy-Blue);
	padding: 5px 10px;
	border-radius: 6px;
	font-size: 16px;
	color: #333;
	white-space: nowrap;
	line-height: 22px;
	transition: background-color 0.3s;
	height: 38px;
	display: flex;
	align-items: center;
}

/* Hover + Active */
.tab_sp .tab:hover {
	background-color: var(--Navy-Blue);
}

.tab_sp .tab a {
	color: var(--Navy-Blue);
}

.tab_sp .tab a:hover {
	color: var(--color-white);
}

.tab_sp .tab.active {
	background-color: var(--Navy-Blue);
	color: var(--color-white);
}

.tab_sp .tab.active a {
	color: var(--color-white);
}

/* Cam kết */
.camket-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 10px 0;
    flex-wrap: wrap;
}

.camket-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333;
    white-space: nowrap;
}

.camket-item i {
    font-size: 16px;
    color: var(--color-black);
}

/* Mobile */
@media (max-width: 480px) {
    .camket-wrap {
        justify-content: flex-start;
    }
    .camket-item {
        width: 100%;
    }
}


@media (max-width: 768px) {
	.laser-wrapper {
		grid-template-columns: 1fr;
	}

	.laser-item h3 {
		font-size: 25px;
	}
	
	.tab_sp {
		flex-direction: column;
		align-items: flex-start;
	}

	.tab_sp .nav {
		display: flex;
		flex-wrap: nowrap;
		overflow-x: auto;
		width: 100%;
		gap: 5px;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		justify-content: flex-start;
	}

	.tab_sp .nav::-webkit-scrollbar {
		display: none;
	}
	
	.camket-wrap {
        gap: 20px;
    }

	.tab_sp .tab {
		flex: 0 0 auto;
	}
}
