/*-----________------ New Style For Home ------________--------*/

.gil-home-page {
	background: #f7fbfd;
}

.gil-section {
	padding: 22px 0;
}

.gil-section-inner {
	background: #fff;
	border-radius: 18px;
	padding: 22px;
	box-shadow: 0 8px 24px rgba(15, 76, 129, 0.06);
}

.gil-section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 18px;
	gap: 12px;
}

.gil-section-title-wrap {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.gil-section-title {
	font-size: 20px;
	font-weight: 800;
	color: #0f4c81;
	margin: 0;
}

.gil-section-subtitle {
	font-size: 13px;
	color: #6c757d;
	margin: 0;
}

.gil-section-action {
	border-radius: 999px;
	padding: 8px 16px;
	font-size: 13px;
	color: #0f4c81;
	background: #eef7ff;
	text-decoration: none;
	white-space: nowrap;
}

.gil-section-action:hover {
	color: #fff;
	background: #0f4c81;
	text-decoration: none;
}

.gil-slick-wrapper .slick-track {
	display: flex !important;
}

.gil-slick-wrapper .slick-slide {
	height: inherit !important;
	padding: 0 8px;
	margin-top: 10px;
	margin-bottom: 10px;
}

.gil-slick-wrapper .slick-slide > div {
	height: 100%;
}

.gil-slick-wrapper .slick-arrow {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	z-index: 5;
	background: #fff;
	box-shadow: 0 6px 16px rgba(15, 76, 129, .16);
}

.gil-product-card {
	background: #fff;
	border: 1px solid #eaf1f6;
	border-radius: 16px;
	padding: 12px;
	height: 100%;
	transition: all .2s ease;
	position: relative;
	overflow: hidden;
}

.gil-product-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 24px rgba(15, 76, 129, 0.10);
}

.gil-product-image-wrap {
	position: relative;
	height: 180px;
	background: #f8fbfd;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.gil-product-image {
	max-width: 100%;
	max-height: 165px;
	object-fit: contain;
}

.gil-product-badges {
	position: absolute;
	top: 8px;
	right: 8px;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.gil-badge {
	font-size: 11px;
	padding: 4px 8px;
	border-radius: 10px 10px 10px 0;
	color: #fff;
	font-weight: 700;
}

.gil-badge-sale {
	background: #e74c3c;
}

.gil-badge-out {
	background: #6c757d;
}

.gil-badge-info {
	background: #0f4c81;
}

.gil-product-content {
	padding-top: 12px;
	text-align: right;
}

.gil-product-brand {
	font-size: 11px;
	color: #1abc9c;
	font-weight: 700;
	margin-bottom: 5px;
	min-height: 16px;
}

.gil-product-title {
	font-size: 13px;
	line-height: 1.8;
	height: 48px;
	overflow: hidden;
	margin: 0 0 10px;
	font-weight: 700;
}

.gil-product-title a {
	color: #263238;
	text-decoration: none;
}

.gil-product-title a:hover {
	color: #0f4c81;
}

.gil-product-price-area {
	min-height: 44px;
	margin-bottom: 10px;
	text-align: left;
}

.gil-product-price {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.gil-new-price {
	color: #0f4c81;
	font-size: 16px;
	font-weight: 700;
}

.gil-old-price {
	color: #9aa6ac;
	font-size: 14px;
	text-decoration: line-through;
}

.gil-stock-out-text {
	color: #dc3545;
	font-size: 13px;
	font-weight: 700;
}

.gil-product-btn {
	display: block;
	text-align: center;
	border-radius: 12px;
	padding: 9px 10px;
	background: #eef7ff;
	color: #0f4c81;
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
}

.gil-product-btn:hover {
	background: #0f4c81;
	color: #fff;
	text-decoration: none;
}

.gil-image-item-card {
	display: block;
	background: #fff;
	border: 1px solid #eaf1f6;
	border-radius: 18px;
	padding: 16px;
	text-align: center;
	height: 100%;
	color: #263238;
	text-decoration: none;
	transition: .2s ease;
}

.gil-image-item-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 24px rgba(15, 76, 129, .10);
	color: #0f4c81;
	text-decoration: none;
}

.gil-image-item-img {
	width: 82px;
	height: 82px;
	object-fit: contain;
	margin-bottom: 12px;
}

.gil-image-item-title {
	font-size: 13px;
	font-weight: 800;
	margin-bottom: 4px;
}

.gil-image-item-subtitle {
	font-size: 11px;
	color: #6c757d;
	line-height: 1.8;
	margin: 0;
}

@media (max-width: 767px) {
	.gil-section {
		padding: 14px 0;
	}

	.gil-section-inner {
		border-radius: 14px;
		padding: 14px;
	}

	.gil-section-header {
		align-items: flex-start;
		margin-bottom: 14px;
	}

	.gil-section-title {
		font-size: 16px;
	}

	.gil-section-subtitle {
		font-size: 12px;
	}

	.gil-section-action {
		font-size: 12px;
		padding: 7px 12px;
	}

	.gil-slick-wrapper .slick-slide {
		padding: 0 5px;
	}

	.gil-product-card {
		padding: 9px;
		border-radius: 13px;
	}

	.gil-product-image-wrap {
		height: 135px;
	}

	.gil-product-image {
		max-height: 120px;
	}

	.gil-product-title {
		font-size: 12px;
		height: 44px;
	}

	.gil-new-price {
		font-size: 12px;
	}

	.gil-product-btn {
		font-size: 12px;
		padding: 8px;
	}

	.gil-image-item-card {
		padding: 12px 8px;
		border-radius: 14px;
	}

	.gil-image-item-img {
		width: 62px;
		height: 62px;
	}
}
/* Gilhealth Slick Dots */
.gil-home-page .slick-dots {
    margin: 18px 0 0;
    padding: 0;
    display: block;
    text-align: center;
    line-height: 1;
}

.gil-home-page .slick-dots li {
    display: inline-block;
    list-style: none;
    font-size: 0;
    height: 8px;
    width: 8px;
    border-radius: 100%;
    margin: 0 5px;
    background-color: #cfd8dc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gil-home-page .slick-dots li button {
    display: none;
}

.gil-home-page .slick-dots li:hover,
.gil-home-page .slick-dots li.slick-active {
    background-color: #1abc9c;
    height: 14px;
    width: 14px;
    margin-bottom: -3px;
}

/* Gilhealth Slick Arrows */
.gil-slick-wrapper,
.gil-hero-slider {
    position: relative;
}

.gil-home-page .gil-slider-arrow {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    line-height: 42px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: 1px solid #eaf1f6;
    border-radius: 50%;
    text-align: center;
    font-size: 16px;
    background: #fff;
    color: #0f4c81 !important;
    z-index: 9;
    box-shadow: 0 8px 20px rgba(15, 76, 129, .14);
    transition: all .2s ease;
}

.gil-home-page .gil-slider-arrow:hover {
    background: #0f4c81;
    color: #fff !important;
}

.gil-home-page .gil-slider-prev {
    right: -14px;
    left: auto;
}

.gil-home-page .gil-slider-next {
    left: -14px;
    right: auto;
}

.gil-home-page .slick-disabled {
    opacity: .35;
    cursor: not-allowed;
}

@media (max-width: 767px) {
    .gil-home-page .gil-slider-arrow {
        display: none !important;
    }

    .gil-home-page .slick-dots {
        margin: 12px 0 0;
    }
}








