﻿:root {
		--primary-color: #d38691;
		--select-color: #cc6a78;
		--secondary-color: #ffd4da;
		--accent-color: #FFF0F3;
		--done-color: #58c0e9;
		--new-color: #e56969;
		--hot-color: #ff7e0b;
		--click-color: #b74555;
		--text-dark: #5A4A4A;
		--text-light: #ffffff;
		--bg-light: #FFF8F9;
		--green-color: #4CAF50;
}
* {
		margin: 0;
		padding: 0;
		box-sizing: border-box;
		/* ========== 全域平滑滾動 ========== */
		scroll-behavior: smooth;
}
html {
		/* ========== 平滑滾動 ========== */
		scroll-behavior: smooth;
		-webkit-overflow-scrolling: touch; /* iOS 平滑滾動 */
}
body {
		/*font-family: 'Noto Sans TC', sans-serif;*/
		font-family: "Noto Serif TC", serif;
		overflow-x: hidden;
		color: var(--text-dark);
		background: var(--bg-light);
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
}
.form-label {
		color: #333333 !important;
}
.form-label .required {
		color: #F44336 !important;
}
.form-group {
		margin-bottom: 1rem;
}
.form-check a {
		color: var(--primary-color) !important;
}
.form-check a:hover {
		color: var(--click-color) !important;
}
.small-note {
		font-size: .85rem;
		line-height: 2;
		color: #999999;
}
.f-alert {
		font-family: 'Noto Sans TC', sans-serif;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		margin-bottom: 25px;
		padding: 10px 15px;
		border-top: 2px dotted #f5e5e7;
		border-bottom: 2px dotted #f5e5e7;
		background-color: #fff5f7;
		color: #b94a5a;
}
.text-red {
		color: var(--click-color) !important;
}
.text-green {
		color: var(--green-color) !important;
}
.f-panzoom__viewport {
		padding: 1rem;
}
.slick-list {
		margin: 0 -15px; /* Half of the slide margin (20px / 2) */
}
.slick-slide {
		margin: 0 15px; /* Desired spacing (e.g., 20px total gap) */
}
.image-style-align-center {
		text-align: center;
}
.image-style-align-right {
		text-align: end;
}
.image-style-align-left {
		text-align: start;
}
.form-select:focus {
		box-shadow: none !important;
}
/* 頁面標題 */
.page-header {
		text-align: center;
		margin-bottom: 2rem;
		padding: 2rem;
		background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(245, 215, 219, 0.8));
		border-radius: 2rem;
}
.page-title {
		font-size: 2.5rem;
		color: var(--primary-color);
		font-weight: 600;
		margin-bottom: 15px;
}
.page-subtitle {
		font-size: 1.1rem;
		color: #999;
		letter-spacing: 2px;
}
/* 麵包屑 */
.breadcrumb-custom {
		background: none;
		padding: 0;
		margin-bottom: 3rem;
		font-size: 0.9rem;
}
.breadcrumb-custom a {
		color: #333;
		text-decoration: none;
		transition: color 0.3s;
}
.breadcrumb-custom a:hover {
		color: var(--primary-color);
}
.breadcrumb-custom .active {
		color: var(--primary-color);
}
.pagination-wrapper {
		display: flex;
		justify-content: center;
		margin-top: 1.5rem;
}
.pagination {
		display: flex;
		gap: 8px;
		list-style: none;
		padding: 0;
		margin: 0;
}
.pagination li {
		margin: 0;
}
.pagination a {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		border: 1px solid #E5E5E5;
		border-radius: 8px;
		color: #666;
		text-decoration: none;
		transition: all 0.3s;
		font-size: 0.9rem;
}
.pagination a:hover {
		border-color: var(--primary-color);
		color: var(--primary-color);
		background: #FFF5F7;
}
.pagination .active a {
		background: var(--primary-color);
		color: #fff;
		border-color: var(--primary-color);
}
.pagination .disabled a {
		opacity: 0.5;
		cursor: not-allowed;
}
.pagination .disabled a:hover {
		border-color: #E5E5E5;
		color: #666;
		background: transparent;
}
/* ==================== 品牌故事文字動畫 ==================== */
.story-text-overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		display: flex;
		align-items: center;
		justify-content: center;
		z-index: 10;
		pointer-events: none;
		/* ========== 硬體加速 ========== */
		transform: translateZ(0);
		backface-visibility: hidden;
}
.story-text-container {
		text-align: center;
		padding: 0 30px;
		width: max-content;
}
.story-text {
		color: var(--text-light);
		letter-spacing: 2px;
		font-weight: 400;
		text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
		opacity: 0;
		filter: blur(10px);
		/* ========== 改用更平滑的緩動 ========== */
		transition: all 0.8s ease-out;
		word-break: keep-all;
}
.story-text.show {
		opacity: 1;
		filter: blur(0);
}
.story-text.hide {
		opacity: 0;
		filter: blur(10px);
		/* ========== 改用更平滑的緩動 ========== */
		transition: all 1s ease-out;
}
/* ==================== Hero 區塊（背景影片版）==================== */
.hero-section {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		z-index: 1;
		overflow: hidden;
		background-repeat: no-repeat;
		background-size: cover;
}
.hero-video-container {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		overflow: hidden;
}
.hero-video {
		position: absolute;
		top: 50%;
		left: 50%;
		min-width: 100%;
		min-height: 100%;
		width: auto;
		height: auto;
		transform: translate(-50%, -50%) translateZ(0);
		object-fit: cover;
		z-index: 1;
		/* ========== 強制硬體加速，減少卡頓 ========== */
		will-change: auto;
		backface-visibility: hidden;
		-webkit-backface-visibility: hidden;
		perspective: 1000px;
		-webkit-perspective: 1000px;
}
.hero-video-overlay {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: linear-gradient(135deg, rgba(255, 248, 249, 0.3) 0%, rgba(232, 180, 188, 0.2) 50%, rgba(255, 248, 249, 0.3) 100%);
		z-index: 2;
		opacity: 0;
		/* ========== 改用更平滑的緩動 ========== */
		transition: opacity 1.5s ease-out;
		pointer-events: none;
		/* ========== 硬體加速 ========== */
		transform: translateZ(0);
		backface-visibility: hidden;
}
.hero-video-overlay.show {
		opacity: 1;
}
.hero-video-container::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		/*background: linear-gradient(135deg, #FFF0F3 0%, #F5D7DB 100%);*/
		z-index: 0;
}
/* ==================== 滾動容器 ==================== */
.scroll-container {
		position: relative;
		z-index: 2;
		margin-top: 0;
		background-color: transparent;
}
/* ==================== Logo 區塊 ==================== */
.logo-section {
		position: relative;
		min-height: 100vh;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		padding: 120px 20px;
		opacity: 0;
		/* ========== 改用更平滑的緩動 ========== */
		transition: opacity 2s ease-out;
		/* ========== 硬體加速 ========== */
		transform: translateZ(0);
		backface-visibility: hidden;
}
.logo-section.show {
		opacity: 1;
}
.logo-container {
		text-align: center;
		max-width: 500px;
}
.main-logo {
		font-family: 'Playfair Display', serif;
		font-size: clamp(3.5rem, 9vw, 7rem);
		font-weight: 300;
		color: var(--primary-color);
		letter-spacing: 12px;
		margin-bottom: 40px;
		opacity: 0;
		transform: translateY(60px);
		transition: all 1.5s ease-out;
		line-height: 1;
}
.main-logo h1 {
		letter-spacing: 3px;
}
.logo-section.show .main-logo {
		opacity: 1;
		transform: translateY(0);
		transition-delay: 0.3s;
}
.logo-divider {
		width: 80px;
		height: 1px;
		background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
		margin: 50px auto;
		opacity: 0;
		transform: scaleX(0);
		/* ========== 改用更平滑的緩動 ========== */
		transition: all 1.2s ease-out;
}
.logo-section.show .logo-divider {
		opacity: 1;
		transform: scaleX(1);
		transition-delay: 0.9s;
}
.logo-description {
		font-size: clamp(0.95rem, 1.4vw, 1.15rem);
		color: var(--text-dark);
		max-width: 650px;
		line-height: 2.2;
		letter-spacing: 2px;
		opacity: 0;
		transform: translateY(40px);
		/* ========== 改用更平滑的緩動 ========== */
		transition: all 1.5s ease-out;
}
.logo-section.show .logo-description {
		opacity: 1;
		transform: translateY(0);
		transition-delay: 1.2s;
}
/* ==================== 直式滾動指示器 ==================== */
.scroll-indicator {
		position: fixed;
		right: 1rem;
		top: 50%;
		transform: translateY(-50%);
		z-index: 1000;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 18px;
		opacity: 0;
		animation: fadeInScroll 2s ease-out 10s forwards;
		cursor: pointer;
		transition: all 0.3s ease-out;
}
.scroll-indicator:hover {
		transform: translateY(-50%) scale(1.08);
}
.scroll-text {
		writing-mode: vertical-rl;
		text-orientation: mixed;
		color: var(--accent-color);
		font-size: 0.7rem;
		letter-spacing: 4px;
		font-weight: 400;
}
.scroll-line {
		width: 1px;
		height: 70px;
		background: linear-gradient(to bottom, var(--accent-color), transparent);
		position: relative;
		overflow: hidden;
}
.scroll-arrow {
		color: var(--accent-color);
		font-size: 1.1rem;
		animation: arrowBounce 3s ease-in-out infinite;
}
@keyframes arrowBounce {
		0%, 100% {
				transform: translateY(0);
		}
		50% {
				transform: translateY(12px);
		}
}
@keyframes fadeInScroll {
		to {
				opacity: 1;
		}
}
.scroll-indicator.hidden {
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.6s ease-out;
}
/* ==================== 區塊樣式 ==================== */
.section {
		position: relative;
		/*min-height: 100vh;*/
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		padding: 1.5rem 0;
}
.section.space {
		padding: 6rem 0 !important;
}
/* ==================== 淡入動畫 API ==================== */
.fade-in-element {
		opacity: 0;
		filter: blur(5px);
		transform: translateY(40px);
		/* ========== 改用更平滑的緩動 ========== */
		transition: all 1.2s ease-out;
}
.fade-in-element.visible {
		opacity: 1;
		filter: blur(0);
		transform: translateY(0);
}
.fade-in-element[data-delay="100"] {
		transition-delay: 0.2s;
}
.fade-in-element[data-delay="200"] {
		transition-delay: 0.4s;
}
.fade-in-element[data-delay="300"] {
		transition-delay: 0.6s;
}
.fade-in-element[data-delay="400"] {
		transition-delay: 0.8s;
}
.fade-in-element[data-delay="500"] {
		transition-delay: 1s;
}
.fade-in-element[data-delay="600"] {
		transition-delay: 1.2s;
}
/* ==================== 產品卡片 ==================== */
.product-card {
		background: rgba(255, 255, 255, 0.85);
		backdrop-filter: blur(20px);
		border-radius: 25px;
		padding: 50px;
		margin: 25px;
		box-shadow: 0 8px 35px rgba(232, 180, 188, 0.12);
		/* ========== 改用更平滑的緩動 ========== */
		transition: all 0.4s ease-out;
		border: 1px solid rgba(232, 180, 188, 0.2);
		/* ========== 硬體加速 ========== */
		transform: translateZ(0);
		backface-visibility: hidden;
}
.product-card:hover {
		transform: translateY(-12px) translateZ(0);
		box-shadow: 0 18px 50px rgba(232, 180, 188, 0.2);
}
.product-icon {
		font-size: 3.5rem;
		color: var(--primary-color);
		margin-bottom: 25px;
}
/* ==================== 按鈕 ==================== */
.btn-water {
		background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
		color: white;
		border: none;
		padding: 18px 50px;
		border-radius: 50px;
		font-size: 1.05rem;
		font-weight: 400;
		letter-spacing: 3px;
		/* ========== 改用更平滑的緩動 ========== */
		transition: all 0.3s ease-out;
		box-shadow: 0 6px 25px rgba(232, 180, 188, 0.25);
		/* ========== 硬體加速 ========== */
		transform: translateZ(0);
		backface-visibility: hidden;
		text-decoration: none;
}
.btn-water:hover {
		transform: translateY(-4px) translateZ(0);
		box-shadow: 0 10px 35px rgba(232, 180, 188, 0.35);
}
/* ==================== Canvas 水波效果 ==================== */
#waterCanvas {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		pointer-events: none;
		z-index: 10;
		/* ========== 硬體加速 ========== */
		transform: translateZ(0);
		will-change: auto;
		backface-visibility: hidden;
}
/* ==================== Slick Banner 輪播樣式 ==================== */
.main-banner-section {
		position: relative;
		padding: 0;
}
.banner-slider {
		position: relative;
		max-width: 100%;
		width: 100%;
		margin-bottom: 0 !important;
}
.banner-slide {
		position: relative;
		outline: none;
}
.banner-image {
		width: 100%;
		height: 760px;
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		position: relative;
		display: flex;
		align-items: center;
		justify-content: flex-end;
}
.banner-content {
		padding: 60px 10%;
		text-align: right;
		color: #fff;
		z-index: 2;
		position: relative;
		margin-bottom: 4rem;
}
.badge-new {
		background: rgba(255, 255, 255, 0.95);
		color: var(--primary-color);
		padding: 8px 20px;
		border-radius: 25px;
		font-size: 0.85em;
		font-weight: 500;
		display: inline-block;
		margin-bottom: 20px;
		letter-spacing: 0.1em;
}
.banner-content h2 {
		font-size: clamp(2em, 3vw, 3.5em);
		font-weight: bold;
		margin-bottom: 15px;
		text-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
		line-height: 1.4;
}
.banner-content p {
		font-size: clamp(0.9em, 1.5vw, 1.1em);
		opacity: 1;
		text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
/* Slick 箭頭自訂樣式 */
.banner-slider .slick-prev, .banner-slider .slick-next {
		width: 50px;
		height: 50px;
		z-index: 10;
		transition: all 0.3s;
}
.banner-slider .slick-prev {
		left: 30px;
}
.banner-slider .slick-next {
		right: 30px;
}
.banner-slider .slick-prev:before, .banner-slider .slick-next:before {
		font-size: 40px;
		opacity: 0.7;
		color: #fff;
}
.banner-slider .slick-prev:hover:before, .banner-slider .slick-next:hover:before {
		opacity: 1;
}
/* Slick 指示點自訂樣式 */
.banner-slider .slick-dots {
		bottom: 1rem;
		max-width: 100%;
		margin: auto;
}
.banner-slider .banner-slide, .banner-slider .slick-list {
		margin: 0;
}
.banner-slider .slick-dots li button {
		height: 15px;
		width: 15px;
}
.banner-slider .slick-dots li {
		margin: 0 .25rem;
}
.banner-slider .slick-dots li button:before {
		font-size: 0;
		opacity: 1;
		border-radius: 100%;
		color: transparent;
		background-color: #ffffff;
		width: 15px;
		height: 15px;
		box-shadow: 0 0 .5rem RGBA(0, 0, 0, .125);
		border: 1px solid var(--primary-color);
}
.banner-slider .slick-dots li.slick-active button:before {
		opacity: 1;
		background-color: var(--primary-color);
}
/* ==================== Section Bg ==================== */
.auth-section {
		background-color: RGBA(255, 245, 247, .9);
}
.content-section {
		background-color: RGBA(255, 245, 247, .9);
		justify-content: flex-start;
		padding-top: 60px;
		padding-bottom: 60px;
		min-height: calc(100vh - 120px);
}
.main-banner-section {
		background-color: RGBA(255, 245, 247, .9);
}
.topic-news-section {
		background-color: RGBA(255, 245, 247, .9);
}
.brand-story-section {
		background-color: RGBA(255, 245, 247, .9);
		position: relative;
		overflow: hidden;
}
.brand-story-section > div {
		background-repeat: no-repeat;
		background-size: auto 100%;
		min-height: 600px;
		background-attachment: scroll;
		position: relative;
		display: flex;
		align-items: center;
		padding-top: 2rem;
		padding-bottom: 2rem;
}
.brand-story-section .story-content {
		padding: 2rem;
		backdrop-filter: blur(1rem);
		-webkit-backdrop-filter: blur(1rem);
		border-radius: 1rem;
}
.brand-story-section .story-content > * {
		position: relative;
		z-index: 1;
}
.brand-story-section .story-content::after {
		content: '';
		position: absolute;
		pointer-events: none;
		width: 100%;
		height: 100%;
		display: block;
		top: 0;
		left: 0;
		background-color: rgba(1, 26, 35, 0);
		z-index: 0;
		border-radius: 1rem;
}
/* 支援 fixed 的瀏覽器才套用 */
@supports not (-webkit-overflow-scrolling: touch) {
		.brand-story-section > div {
				background-attachment: fixed;
				background-size: cover;
		}
}
.brand-story-section .col-lg-6 {
		flex: 0 0 auto;
		width: 100%;
}
.brand-story-section .col-lg-6:first-child {
		display: none;
}
.brand-story-section .row.align-items-center {
		max-width: 80%;
		margin: auto;
}
.product-category-section {
		background-color: RGBA(255, 245, 247, .9);
}
.new-arrival-section {
		background-color: RGBA(255, 245, 247, .9);
}
.bestseller-section {
		background-color: RGBA(255, 245, 247, .9);
}
/* ==================== 品牌故事區 ==================== */
.story-content {
		max-width: calc(100% - 2rem);
}
.story-content .section-title-elegant {
		font-size: 2rem;
		color: #ffffff;
		letter-spacing: 0.05em;
		text-shadow: 0 0 .5rem RGBA(0, 0, 0, .25);
}
.story-content .section-title-elegant + p {
		font-size: 1rem;
		color: #ffffff;
		margin-bottom: 30px;
		font-weight: 300;
		line-height: 2;
		text-shadow: 0 0 .5rem RGBA(0, 0, 0, .5);
}
/* ==================== TOPIC 卡片 ==================== */
.section-title-elegant {
		font-size: 2rem;
		color: var(--primary-color);
		margin-bottom: 2rem;
		font-weight: bold;
		letter-spacing: 0.1em;
}
.section-title-elegant + p {
		font-size: 1rem;
		color: #C89B9B;
		margin-bottom: 3rem;
		letter-spacing: 0.2em;
}
.topic-card {
		background: #fff;
		border-radius: 12px;
		overflow: hidden;
		box-shadow: 0 4px 20px rgba(212, 165, 165, 0.1);
		transition: transform 0.3s, box-shadow 0.3s;
		height: 100%;
}
.topic-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 8px 30px rgba(212, 165, 165, 0.2);
}
.topic-news-section .topic-card, .topic-news-section .news-list {
		min-height: 335px;
}
.topic-image {
		width: 100%;
		height: 100%;
		overflow: hidden;
		aspect-ratio: 6 / 3;
}
.topic-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.5s;
}
.topic-card:hover .topic-image img {
		transform: scale(1.05);
}
.topic-content {
		padding: 20px;
}
.topic-date {
		display: block;
		font-size: 1em;
		color: var(--primary-color);
		margin-bottom: 5px;
}
.topic-text {
		font-size: 1em;
		line-height: 1.7;
		color: #666;
		text-decoration: none;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
}
.topic-text:hover {
		color: #000;
		text-decoration: underline;
}
/* 浮動分享按鈕 */
.floating-share {
		position: fixed;
		display: none !important;
		right: 30px;
		top: 50%;
		transform: translateY(-50%);
		flex-direction: column;
		gap: 10px;
		z-index: 100;
}
.floating-share-btn {
		width: 50px;
		height: 50px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #fff;
		cursor: pointer;
		transition: all 0.3s;
		font-size: 1.3rem;
		box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.floating-share-btn:hover {
		transform: scale(1.1);
}
.floating-share-btn.facebook {
		background: #1877F2;
}
.floating-share-btn.line {
		background: #00B900;
}
.floating-share-btn.twitter {
		background: #1DA1F2;
}
.floating-share-btn.top {
		background: var(--primary-color);
}
/* ==================== NEWS 列表 ==================== */
.news-list {
		background: #fff;
		border-radius: 12px;
		padding: 30px;
		box-shadow: 0 4px 20px rgba(212, 165, 165, 0.1);
}
.news-item {
		display: flex;
		padding: 15px 0;
		border-bottom: 1px solid #F5F5F5;
		text-decoration: none;
		transition: all 0.3s;
}
.news-item:last-child {
		border-bottom: none;
}
.news-item:hover {
		padding-left: 10px;
		background: rgba(212, 165, 165, 0.05);
}
.news-date {
		flex-shrink: 0;
		width: 100px;
		font-size: 1em;
		color: var(--primary-color);
}
.news-title {
		flex: 1;
		font-size: 1em;
		color: #666;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
}
/* ==================== 按鈕樣式 ==================== */
.btn-outline-elegant {
		border: 1px solid var(--primary-color);
		color: var(--primary-color);
		background: transparent;
		padding: 10px 40px;
		border-radius: 25px;
		font-size: 0.9em;
		letter-spacing: 0.1em;
		transition: all 0.1s ease;
		cursor: pointer;
		text-decoration: none;
}
.btn-outline-elegant:hover {
		background: var(--primary-color);
		color: #fff;
}
.btn-elegant {
		background: var(--primary-color);
		color: #fff;
		border: none;
		padding: 10px 40px;
		border-radius: 25px;
		font-size: 0.9em;
		letter-spacing: 0.1em;
		transition: all 0.1s ease;
		text-decoration: none;
		cursor: pointer;
}
.btn-elegant:hover {
		background: var(--click-color);
		transform: translateY(-2px);
		box-shadow: 0 4px 15px rgba(212, 165, 165, 0.3);
}
/* ==================== 品牌故事圖片 ==================== */
.story-image-wrapper {
		position: relative;
		overflow: hidden;
		border-radius: 20px;
		box-shadow: 0 10px 40px rgba(212, 165, 165, 0.2);
}
.story-subtitle {
		text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
.rounded-elegant {
		border-radius: 20px;
}
.story-content {
		padding: 0 30px;
}
/* ==================== 商品分類卡片 ==================== */
.category-card {
		background: #fff;
		border-radius: 15px;
		padding: 30px 20px;
		text-align: center;
		box-shadow: 0 4px 20px rgba(212, 165, 165, 0.1);
		transition: all 0.3s;
}
.category-card:hover {
		box-shadow: 0 8px 35px rgba(212, 165, 165, 0.2);
}
.category-title {
		font-size: 1.3em;
		color: var(--primary-color);
		margin-bottom: 15px;
		font-weight: 400;
		letter-spacing: 0.05em;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
}
.category-subtitle {
		font-size: 0.9em;
		color: #999;
		margin-bottom: 0;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
}
.category-image {
		margin: 20px 0;
		aspect-ratio: 1 / 1;
		overflow: hidden;
}
.category-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
}
.btn-category {
		background: transparent;
		border: 1px solid var(--primary-color);
		color: var(--primary-color);
		padding: 8px 30px;
		border-radius: 20px;
		font-size: 0.85em;
		transition: all 0.3s;
		cursor: pointer;
}
.btn-category:hover {
		background: var(--primary-color);
		color: #fff;
}
/* ==================== RWD ==================== */
@media (min-width: 992px) {
		.mobile-menu-overlay {
				display: none;
		}
}
@media (min-width: 1200px) {
		.container.wide {
				max-width: calc(100% - 2rem);
		}
		.container.wide.none {
				max-width: 100%;
		}
}
@media (min-width: 1920px) {
		.container.wide.none, .container.wide {
				max-width: 2560px;
		}
}
@media (min-width: 3480px) {
		.main-banner-section {
				padding-top: 1.5rem !important;
		}
}
@media (max-width: 1199px) {
		.main-logo {
				line-height: 1.25;
		}
		.main-logo h1 {
				letter-spacing: 3px;
		}
		.page-header {
				padding: 1.5rem 1rem;
		}
		.page-title {
				font-size: 2rem;
				margin-bottom: 15px;
		}
		.page-subtitle {
				font-size: 1rem;
		}
		.slick-prev {
				left: 25px !important;
		}
		.slick-next {
				right: 25px !important;
		}
		.brand-story-section > div {
				max-width: 100%;
		}
		.floating-share {
				display: none;
		}
		.section.space {
				padding: 3rem 0 !important;
		}
		.section.space.contact-section {
				padding: 3rem 1rem !important;
		}
		.topic-news-section .container .col-lg-7 {
				margin-bottom: 3rem;
		}
		.logo-container {
				max-width: 360px;
		}
		.category-title {
				font-size: 1.125rem;
				margin-bottom: .5rem !important;
		}
}
@media (max-width: 991px) {
		.main-logo {
				line-height: 1.5;
		}
		.main-logo h1 {
				letter-spacing: 3px;
		}
		.page-header {
				padding: 1rem 1rem;
		}
		.page-title {
				font-size: 1.5rem;
				margin-bottom: 15px;
		}
		.page-subtitle {
				font-size: .85rem;
		}
		.btn-elegant {
				font-size: .875rem;
		}
		.btn-water {
				padding: 15px 40px;
				border-radius: 50px;
				font-size: .875rem;
		}
		.story-content {
				max-width: 100%;
		}
		.footer-social-row .footer-social-icon {
				width: 40px;
				height: 40px;
				font-size: 1.5rem;
		}
		.section-title-elegant {
				font-size: 1.75rem;
				margin-bottom: 1rem;
		}
		.topic-news-section .topic-card {
				min-height: 350px;
		}
		.topic-news-section .news-list {
				min-height: inherit;
		}
		.banner-image {
				height: 400px;
		}
		.brand-story-section .row.align-items-center {
				max-width: 90%;
				margin: auto;
		}
		.banner-content {
				padding: 40px 5%;
		}
		.banner-content h2 {
				font-size: 1.8em;
		}
		.banner-slider .slick-prev, .banner-slider .slick-next {
				width: 40px;
				height: 40px;
		}
		.banner-slider .slick-prev {
				left: 15px;
		}
		.banner-slider .slick-next {
				right: 15px;
		}
		.story-content {
				padding: 30px 0;
		}
		.category-card {
				margin-bottom: 10px;
				padding: 1rem .75rem;
		}
		.product-category-section .col-6 {
				max-width: 33.3% !important;
		}
		.product-card-simple {
				margin-bottom: 0;
		}
		.scroll-indicator {
				display: none !important;
		}
		.main-logo {
				letter-spacing: 6px;
		}
		.scroll-indicator {
				right: 25px;
		}
		.scroll-text {
				font-size: 0.6rem;
		}
		.scroll-line {
				height: 50px;
		}
		.story-text {
				font-size: clamp(1.1rem, 4vw, 1.5rem);
				letter-spacing: 2px;
		}
}
@media (max-width: 767px) {
		.main-logo {
				line-height: 1.35;
		}
		.main-logo h1 {
				font-size: 1rem !important;
		}
		.pagination a {
				width: 25px;
				height: 25px;
		}
		.section-title-elegant + p {
				margin-bottom: 2rem;
		}
		.main-logo {
				max-width: 80%;
				margin: auto;
		}
		.product-category-section .container {
				max-width: calc(100% - 2rem);
		}
		.topic-content {
				padding: 15px;
		}
		.topic-news-section .topic-card {
				min-height: 250px;
		}
		.news-list {
				padding: 15px 20px;
		}
		.news-date {
				width: 80px;
		}
		.brand-story-section .story-content::after {
				background-color: rgba(0, 0, 0, .5);
		}
		.topic-image {
				aspect-ratio: 6 / 4;
		}
}
@media (max-width: 576px) {
		.main-logo {
				line-height: 1.35;
		}
		.main-logo h1 {
				font-size: .875rem !important;
		}
		.f-alert, .form-label, .form-check-label {
				font-size: .85rem !important;
		}
		.contact-section .section-title-elegant + p {
				text-align: center;
		}
		.brand-story-section .row.align-items-center {
				max-width: 100%;
		}
		.topic-news-section .topic-card {
				min-height: 210px;
		}
		.product-category-section .col-6 {
				max-width: 80% !important;
				width: 100%;
				margin: 0 auto 1rem auto;
		}
		.section.space {
				padding: 2rem 0 !important;
		}
		.page-title {
				font-size: 1.75rem;
				margin-bottom: .5rem;
		}
		.page-subtitle {
				font-size: .85rem;
				letter-spacing: normal;
		}
		.btn-elegant {
				font-size: .85rem;
		}
		.input-group .btn, .form-control, .form-select {
				font-size: .85rem;
		}
}