:root {
  --main-color: #03934c;
}






* {
	transition: 0.5s;
}

body {
	font-family: 'Kanit', sans-serif;
	font-family: 'Prompt', sans-serif;
}

a {
	transition: 0.3s;
	text-decoration: none;
}

a:hover {
	transition: 0.3s;
	text-decoration: none;
}

button:focus {
	outline: none;
}

img {
	max-width: 100%;
}

header {
	position: fixed;
	width: 100%;
	padding-top: 8px;
	background-color: var(--main-color);
	z-index: 100;
	height: 80px;
}

.container {
	max-width: 1024px;
}

.header-container {
	max-width: 100%;
	width: 1280px;
	padding: 0 16px;
	margin: auto;
	position: relative;
}

.logo {
	width: 200px;
	display: block;
}

.top-menu {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #fff;
	border-radius: 100px;
	position: absolute;
	width: 98%;
	padding: 16px;
	left: 1%;
	top: 100%;
	margin-top: 8px;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

header.scrolled {
	height: 40px;
}

.top-menu.scrolled {
	margin-top: -24px;
}

.main-menu ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	text-align: center;
}

.main-menu ul li {
	display: inline-block;
	position: relative;
}

.main-menu ul li a {
	color: #111;
	padding: 0 16px;
}

.main-menu ul li a:hover {
	color: var(--main-color);
}

.main-menu ul li.current-menu-item > a,
.main-menu ul li.current_page_item > a,
.main-menu ul li.current-menu-ancestor > a,
.main-menu ul li.current_page_parent > a {
  color: var(--main-color);
}

.main-menu ul li ul.sub-menu {
	width: 220px;
	display: none;
	padding: 10px 0;
	position: absolute;
	background-color: #fff;
	border-radius: 16px;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	text-align: left;
}

.main-menu ul li ul.sub-menu li {
	padding: 2px 6px ;
}

.main-menu ul li.menu-item-has-children:hover ul.sub-menu {
	display: block;
}

.main-menu ul li.menu-item-has-children:after {
	font-family: "Font Awesome 5 Free";
	content: "\f078"; /* chevron-down */
	font-weight: 900;
	font-size: 12px;
	margin-left: -10px;
}

.main-top-header {
	color: #fff;
}

.top-text-time {
	margin: 0;
	text-align: right;
	font-size: 14px;
	padding-right: 16px;
}

/* Swiper pagination bullet default */
.swiper-pagination-bullet {
  background: white;
  opacity: 0.7;
  width: 16px;
  height: 16px;
  border: 1px solid #ccc;
}

/* Swiper pagination bullet active */
.swiper-pagination-bullet-active {
  background: #02b902;
  opacity: 1;
}

.section-content {
	padding: 60px 0;
}

.main-title {
	text-align: center;
}

.main-title p {
	margin: 16px 0;
	font-size: 18px;
}

.main-title h2 {
	color: var(--main-color);
	margin-block: 16px;
	font-size: 40px;
	font-weight: 500;
}

.main-content {
	margin: 32px 0;
}

.main-content img {
	border-radius: 32px;
}

.main-content p {
	margin: 24px 0;
	color: #666;
	font-size: 16px;
}

.product-swiper {
	max-width: 960px;
	margin: auto;
}

.product-swiper .swiper-slide {
	height: 420px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 32px;
	position: relative;
	overflow: hidden;
	margin-block: 60px;
}

.product-swiper .swiper-slide .product-overlay {
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 16px;
	background-color: rgba(0,0,0,0.5);
	color: #fff;
	font-size: 20px;
	text-align: center;
}

.section-second {
	background-color: #f8f8fa;
}

.news-card {
	display: block;
	background-color: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	margin-bottom: 32px;
}

.news-card img {
	height: 240px;
	object-fit: cover;
	object-position: center;
}

.news-card .empty-image {
	height: 240px;
}

.news-card .news-card-content {
	padding: 16px;
}

.news-card h3 {
	color: var(--main-color);
	font-size: 20px;
	font-weight: 600;
}

.news-card p {
	color: #666;
	font-size: 14px;
}

.news-card .readmore-icon {
	text-align: right;
	font-size: 12px;
	color: #ccc;
}

.news-card:hover {
	box-shadow: rgba(100, 100, 111, 0.4) 0px 8px 32px 0px;
}

.news-card:hover .readmore-icon {
	color: var(--main-color);
}

.news-card:hover .readmore-icon i {
	margin-left: 5px;
}

.wave-background {
  position: relative;
  height: 660px;
  background: linear-gradient(to bottom, #fff, #e0f7ef);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  text-align: center;
  padding-bottom: 100px;
}

.wave-background h1,
.wave-background p,
.wave-background a {
  position: relative;
  z-index: 1;
}

.wave-background a {
  background: var(--main-color);
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 18px;
  border-radius: 24px;
  cursor: pointer;
  margin-top: 16px;
}

.waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 0;
}

.partner-box {
	display: flex;
	justify-content: center;
	gap: 32px;
	flex-wrap: wrap;
	margin-top: 64px;
}

.partner-box .img-box {
	width:calc(20% - 32px);
	border-radius: 16px;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	text-align: center;
}

.partner-box .img-box img {
	height: 100px;
	width: auto;
	object-fit: contain;
}

.footer {
  background: #333;
  color: #ddd;
  padding: 40px 20px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1 1 200px;
  margin: 10px;
}

.footer-column a {
	color: #fff;
}

.footer-logo {
  font-size: 20px;
  color: #02b902;
}

.footer-column h4 {
  color: white;
  font-size: 16px;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
  cursor: pointer;
  transition: color 0.2s;
}

.footer-column ul li:hover {
  color: #02b902;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid #555;
  text-align: center;
  color: #ddd;
  padding: 15px 0;
  font-size: 14px;
  margin-top: 20px;
}

.float-icon {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 10000;
}

.float-icon a {
	display: block;
	border-radius: 100%;
	width: 52px;
	height: 52px;
	border: 2px solid #fff;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	margin-bottom: 10px;
	overflow: hidden;
	background-color: #fff;
}

.float-icon a img {
	width: 100%;
}

.product-container {
	margin-top: 60px;
}

/* Product Card Styling */
.product-card {
	background: #fff;
	border-radius: 32px;
	overflow: hidden;
	box-shadow: rgba(100, 100, 111, 0.1) 0px 7px 29px 0px;
	margin-bottom: 30px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
  
  .product-card:hover {
	box-shadow: rgba(100, 100, 111, 0.3) 0px 8px 32px 0px;
  }
    
  .product-image img {
	height: 320px;
	width: 100%;
	object-fit: cover;
  }

  .empty-image {
  	height: 320px;
  	width: 100%;
  	display: flex;
  	align-items: center;
  	justify-content: center;
  	background-color: #ccc;
  	color: #fff;
  	border-radius: 16px;
  }
  
  .product-info {
	padding: 32px;
  }
  
  .product-title {
	color: var(--main-color);
	font-size: 22px;
	font-weight: 700;
	margin: 0;
	line-height: 1.3;
  }
  
  .product-subtitle {
	color: var(--main-color);
	font-size: 18px;
	font-weight: 500;
	margin: 5px 0 15px;
  }
  
  .product-description {
	color: #666;
	font-size: 16px;
	margin-bottom: 20px;
  }
  
  .product-size {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 16px;
  }
  
  .size-label {
	color: #888;
	font-size: 16px;
  }
  
  .size-value {
	color: #333;
	font-size: 18px;
	font-weight: 600;
  }
  
  .btn-details {
	background: var(--main-color);
	color: white;
	padding: 8px 20px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 500;
	transition: background 0.3s ease;
  }
  
  .btn-details:hover {
	background: #029502;
	color: white;
	text-decoration: none;
  }

.swiper-inner-product img {
	border-radius: 32px;
	aspect-ratio: 16/9;
	object-fit: cover;
	object-position: center;
}

.inner-product-title h2 {
	font-weight: 600;
}

.section-cover {
	height: 300px;
	background-color: #eee;
	display: flex;
	align-items: flex-end;

	background-image: url('../img/bg-cover.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.section-cover h2 {
	font-weight: 600;
	color: #fff;
}

.section-overlay {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: flex-end;
	background-color: rgba(0,0,0,0.3);
	padding-bottom: 30px;
}

.product-price {
	font-size: 32px;
	color: var(--main-color);
	font-weight: 600;
}

.inner-product-info .product-title {
	font-size: 30px;
}

.buy-button {
	padding: 8px 32px;
	background-color: #e82525;
	color: #fff;
	border-radius: 12px;
	font-size: 18px;
	display: inline-block;
	margin-top: 16px;
}

.buy-button:hover {
	background-color: #a81818;
}

/* Breadcrumb Styling */
.breadcrumb-container {
    background-color: #f8f9fa;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
    margin-bottom: 0;
    background-color: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: #02b902;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #018c01;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #6c757d;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #6c757d;
}

.page-404 {
  background-color: #f8f9fa;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.error-container {
  text-align: center;
  padding: 30px;
}
.error-code {
  font-size: 100px;
  font-weight: bold;
  color: #02b902;
}
.error-message {
  font-size: 24px;
  margin-bottom: 20px;
}

.map-container iframe {
	width: 100%;
	border-radius: 32px;
	height: 480px;
}

.swiper-top img {
	aspect-ratio: 18/9;
	object-fit: cover;
	object-position: center;
}

.post-np-button {
	padding: 32px 0;
	border-top: 1px solid #ccc;
}

.post-np-button a {
	padding: 6px 32px;
	background-color: #ccc;
	color: #fff;
	border-radius: 32px;
}

.post-np-button a:hover {
	background-color: var(--main-color);
}

/*zzz*/

@media (max-width: 991px) {
  .header-container {
  	max-width: 100%;
  }

  .top-menu {
  	position: relative;
  }
}

@media (max-width: 767px) {
  .top-menu {
  	padding: 4px 10px;
  }

  .section-content {
  	padding: 30px 0;
  }

  .wave-background {
  	height: 400px;
  }

  .footer-column {
	  flex: auto;
	  width: 100%;
	} 

	.footer-container .footer-column:first-child {
		padding-top: 16px;
	}

	.footer-container .footer-column:last-child {
		border-top: 1px solid #111;
		padding-top: 16px;
	}
}

/*mobild*/
@media (max-width: 600px) {
	.news-card {
		max-width: 360px;
		margin: auto;
		margin-bottom: 32px;
	}

	.container {
		padding: 0 32px;
	}

	.partner-box img {
		width: calc(33% - 32px);
	}

	.main-title h2 {
		font-size: 32px;
	}

	.main-title p {
		font-size: 14px;
	}

	.wave-background img {
		width: 320px;
	}

	.wave-background {
		padding-bottom: 30px;
	}

	.logo {
		width: auto;
		height: 24px;
		display: inline-flex;
		align-items: center;
		margin: 10px 0;
	}
	
	.logo img {
		width: auto;
		height: 100%;
	}
	
	.product-size {
		flex-direction: column;
		gap: 10px;
	}
	
	.btn-details {
		width: 100%;
		text-align: center;
	}
	
	.partner-box .img-box {
		width: 30%;
	}
	
	.partner-box {
		gap: 16px;
	}
}

















