/* ==========================================================================
   Nàng Then – Nem Ngựa Nàng Then Theme
   ========================================================================== */

:root {
	--nt-orange: #c45c26;
	--nt-orange-dark: #a84a1a;
	--nt-green: #1b4d3e;
	--nt-green-light: #2d6b58;
	--nt-cream: #FBF0DA;
	--nt-cream-dark: #e8dcc8;
	--nt-bg-gradient-start: #fff8ed;
	--nt-bg-gradient-end: #f8e7cd;
	--nt-body-gradient: linear-gradient(180deg, var(--nt-bg-gradient-start) 50%, var(--nt-bg-gradient-end) 100%);
	--nt-brown: #77221D;
	--nt-brown-dark: #2a1810;
	--nt-white: #ffffff;
	--nt-text: #fbf0da;
	--nt-radius: 16px;
	--nt-radius-sm: 10px;
	--nt-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	--font-main: 'Ysabeau', sans-serif;
	--font-accent: 'Phudu', sans-serif;

	/* Typography scale – desktop */
	--nt-fs-xs: 13.5px;
	--nt-fs-sm: 18px;
	--nt-fs-base: 20px;
	--nt-fs-md: 27px;
	--nt-fs-lg: 30px;
	--nt-fs-xl: 35px;
	--nt-fs-2xl: 40px;
}

/* Bootstrap container – đồng bộ max-width theme */
@media (min-width: 1200px) {
	.container {
		max-width: 1200px;
	}
}

/* Reset overrides – Ysabeau site-wide */
body,
button,
input,
select,
textarea,
h1,
h2,
h3,
h4,
h5,
h6,
.site-title,
.site-description,
.main-navigation,
.widget,
.entry-title,
.entry-content {
	font-family: var(--font-main);
}

html {
	min-height: 100%;
}

body {
	color: var(--nt-text);
	min-height: 100%;
	background: var(--nt-body-gradient);
	background-attachment: fixed;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
	transition: opacity 0.2s;
}

a:hover {
	opacity: 0.85;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Section titles */
.nt-section-title {
	font-size: var(--nt-fs-2xl);
	font-weight: 700;
	color: #C85108;
	font-family: 'Phudu'	;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 40px;
	position: relative;
}

.nt-section-title--white {
	color: var(--nt-white);
}

.nt-section-title--decorated::before,
.nt-section-title--decorated::after {
	content: '';
	display: inline-block;
	width: 60px;
	height: 2px;
	background: var(--nt-orange);
	vertical-align: middle;
	margin: 0 16px;
}

.nt-section-title--decorated-white::before,
.nt-section-title--decorated-white::after {
	background: rgba(255, 255, 255, 0.6);
}

.nt-section-title--ornament {
    font-family: 'Phudu';
    font-weight: 600;
    color: #C85108;
    font-size: var(--nt-fs-2xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    --nt-title-ornament-top: url(../images/section-title-ornament-top.svg);
    --nt-title-ornament-bottom: url(../images/section-title-ornament-bottom.svg);
}
.nt-section-title--ornament::before,
.nt-section-title--ornament::after {
	content: '';
	display: block;
	width: min(260px, 72vw);
	height: 22px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.nt-section-title--ornament::before {
	background-image: var(--nt-title-ornament-top);
}

.nt-section-title--ornament::after {
	background-image: var(--nt-title-ornament-bottom);
}

.nt-section-title--ornament-white {
	color: var(--nt-white);
}

.nt-section-title--ornament-orange {
	color: var(--nt-orange);
}

.nt-section-title--ornament-green {
    color: #C85108;
    --nt-title-ornament-top: url(../images/section-title-ornament-top-green.svg);
    --nt-title-ornament-bottom: url(../images/section-title-ornament-bottom-green.svg);
}
/* Buttons */
.nt-btn {
	display: inline-block;
	padding: 10px 24px;
	background: #3C693B;
	color: var(--nt-white);
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border: none;
	border-radius: 30px;
	cursor: pointer;
	transition: background 0.2s;
}

.nt-btn:hover {
	background: var(--nt-green-light);
	opacity: 1;
	color: var(--nt-white);
}

.nt-btn--outline {
	background: transparent;
	border: 2px solid var(--nt-orange);
	color: var(--nt-green);
}

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

/* ==========================================================================
   Top Bar
   ========================================================================== */
.nt-topbar {
	background: var(--nt-brown);
	color: var(--nt-white);
	font-size: var(--nt-fs-xs);
	padding: 8px 0;
}

.nt-topbar__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nt-topbar__contact {
	display: flex;
	gap: 24px;
	align-items: center;
}

.nt-topbar__contact a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--nt-white);
    font-variant-numeric: lining-nums tabular-nums;
    font-feature-settings: 'lnum' 1, 'tnum' 1;
    background: #FBF0DA;
    color: #C85108;
    padding: 2px 15px;
    border-radius: 100px;
    display: flex;
    align-items: center;
	font-weight: 600;
	max-height: 21px;
}
.nt-topbar__contact svg,
.nt-topbar__contact img {
	width: 14px;
	height: 14px;
	fill: currentColor;
	flex-shrink: 0;
	object-fit: contain;
}

.nt-topbar__social img {
	display: block;
	object-fit: contain;
}

.nt-topbar__social {
	display: flex;
	gap: 10px;
}

.nt-topbar__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--nt-white);
    font-size: 0.7rem;
    background: #FBF0DA;
}

.nt-topbar__social a:hover {
	background: rgba(255, 255, 255, 0.15);
	opacity: 1;
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
	background: var(--nt-white);
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.nt-header__inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 16px;
	padding-top: 12px;
	padding-bottom: 12px;
}

.nt-header__nav-left,
.nt-header__nav-right {
	display: flex;
	align-items: center;
}

.nt-header__nav-left ul,
.nt-header__nav-right ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 28px;
}

.nt-header__nav-left {
	justify-content: flex-end;
}
		
.nt-header__nav-right {
	justify-content: flex-start;
}
.nt-header__nav-left a, .nt-header__nav-right a {
    font-size: var(--nt-fs-base);
    font-weight: 500;
    color: #C85108;
    text-transform: uppercase;
    letter-spacing: 0.04em;
	font-family: Phudu;
}
.nt-header__nav-left a:hover,
.nt-header__nav-right a:hover {
	color: var(--nt-orange);
	opacity: 1;
}

.nt-header__logo {
	text-align: center;
}

.nt-header__logo img {
	min-height: 85px;
	margin: 0 auto;
}

@media (max-width: 991.98px) {
	.nt-header__logo {
		text-align: left;
	}

	.nt-header__logo img,
	.nt-header__logo .custom-logo-link {
		margin-left: 0;
		margin-right: auto;
		padding: 5px 0px;
	}
}

.nt-header__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
}

.nt-header__desktop {
	display: flex;
}

.nt-header__mobile-toggle {
	display: none;
}
.nt-header-search {
    display: flex;
    align-items: center;
    /* min-width: 200px; */
    max-height: 32px;
    max-width: 110PX;
    padding: 3px 3px 3px 16px;
    border: 1px solid #c85108;
    border-radius: 999px;
    background: var(--nt-white);
    overflow: hidden;
	margin-left: 20px;
}

.nt-header-search input[type="search"] {
	flex: 1 1 auto;
	min-width: 0;
	border: none;
	outline: none;
	padding: 6px 8px 6px 0;
	background: transparent;
	font-family: var(--font-main);
	font-size: var(--nt-fs-sm);
	color: #535050;
}

.nt-header-search input[type="search"]::placeholder {
	color: #999;
}

.nt-header-search button {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 25px;
	height: 25px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: #c85108;
	color: var(--nt-white);
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.nt-header-search button:hover {
	opacity: 0.9;
}

.nt-header-search button svg {
	display: block;
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.menu-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--nt-green);
	margin: 5px 0;
	transition: 0.3s;
}

/* ==========================================================================
   Mobile sidebar menu
   ========================================================================== */
.nt-mobile-sidebar {
	position: fixed;
	inset: 0;
	z-index: 10000;
	pointer-events: none;
	visibility: hidden;
}

.nt-mobile-sidebar.is-open {
	pointer-events: auto;
	visibility: visible;
}

.nt-mobile-sidebar__overlay {
	position: absolute;
	inset: 0;
	background: rgba(26, 46, 31, 0.55);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.nt-mobile-sidebar.is-open .nt-mobile-sidebar__overlay {
	opacity: 1;
}

.nt-mobile-sidebar__panel {
	position: absolute;
	top: 0;
	right: 0;
	width: min(320px, 88vw);
	height: 100%;
	background: var(--nt-white);
	box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
	transform: translateX(100%);
	transition: transform 0.3s ease;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	outline: none;
}

.nt-mobile-sidebar.is-open .nt-mobile-sidebar__panel {
	transform: translateX(0);
}

.nt-mobile-sidebar__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 20px 16px;
	border-bottom: 1px solid var(--nt-cream-dark);
}

.nt-mobile-sidebar__logo img {
	display: block;
	width: 56px;
	height: auto;
}

.nt-mobile-sidebar__close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: none;
	background: var(--nt-cream);
	color: var(--nt-green);
	border-radius: 50%;
	cursor: pointer;
	padding: 0;
	transition: background 0.2s ease, color 0.2s ease;
}

.nt-mobile-sidebar__close:hover {
	background: var(--nt-orange);
	color: var(--nt-white);
}

.nt-mobile-sidebar__nav {
	flex: 1;
	padding: 12px 0;
}

.nt-mobile-sidebar__menu {
	padding: 0;
	margin: 0;
}

.nt-mobile-sidebar__menu li + li {
	border-top: 1px solid var(--nt-cream);
}

.nt-mobile-sidebar__menu a,
.nt-mobile-sidebar__menu .nav-link {
	display: block;
	padding: 14px 24px;
	color: var(--nt-green);
	font-family: var(--font-accent);
	font-weight: 700;
	font-size: 0.9rem;
	text-transform: uppercase;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

.nt-mobile-sidebar__menu a:hover,
.nt-mobile-sidebar__menu .nav-link:hover,
.nt-mobile-sidebar__menu .current-menu-item > a,
.nt-mobile-sidebar__menu .current-menu-item > .nav-link {
	background: var(--nt-cream);
	color: var(--nt-orange);
}

.nt-mobile-sidebar__search {
	padding: 16px 20px 24px;
	border-top: 1px solid var(--nt-cream-dark);
}

.nt-mobile-sidebar__search .search-form {
	display: flex;
	gap: 8px;
}

.nt-mobile-sidebar__search input[type="search"] {
	flex: 1;
	border: 1px solid var(--nt-cream-dark);
	border-radius: 30px;
	padding: 10px 16px;
	font-family: var(--font-main);
	font-size: 0.85rem;
}

.nt-mobile-sidebar__search input[type="search"]:focus {
	outline: none;
	border-color: var(--nt-orange);
}

.nt-mobile-sidebar__search button,
.nt-mobile-sidebar__search input[type="submit"] {
	background: var(--nt-orange);
	color: var(--nt-white);
	border: none;
	border-radius: 30px;
	padding: 10px 18px;
	font-family: var(--font-accent);
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	cursor: pointer;
}

body.nt-mobile-menu-open {
	overflow: hidden;
}

.menu-toggle.is-active .navbar-toggler-icon-custom:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active .navbar-toggler-icon-custom:nth-child(2) {
	opacity: 0;
}

.menu-toggle.is-active .navbar-toggler-icon-custom:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.navbar-toggler-icon-custom {
	transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.nt-hero {
	position: relative;
	overflow: hidden;
}

.nt-hero--home,
.nt-hero--policy,
.nt-hero--services,
.nt-hero--page {
	height: clamp(480px, calc(42vw + 80px), 650px);
	overflow: visible;
}

.nt-hero--blog {
	height: clamp(440px, calc(38vw + 80px), 600px);
	overflow: visible;
}

.nt-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
}


.nt-news-card__icon {
    margin-right: 10px;
}

.nt-hero--home .nt-hero-swiper,
.nt-hero--policy .nt-hero-swiper,
.nt-hero--services .nt-hero-swiper,
.nt-hero--blog .nt-hero-swiper,
.nt-hero--page .nt-hero-swiper {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: auto;
	overflow: hidden;
}

.nt-hero--home .nt-hero-swiper .swiper-wrapper,
.nt-hero--policy .nt-hero-swiper .swiper-wrapper,
.nt-hero--services .nt-hero-swiper .swiper-wrapper,
.nt-hero--blog .nt-hero-swiper .swiper-wrapper,
.nt-hero--page .nt-hero-swiper .swiper-wrapper {
	height: 100%;
}

.nt-hero--home .swiper-slide,
.nt-hero--policy .swiper-slide,
.nt-hero--services .swiper-slide,
.nt-hero--blog .swiper-slide,
.nt-hero--page .swiper-slide {
	height: 100%;
}

.nt-hero--home .nt-hero__img,
.nt-hero--policy .nt-hero__img,
.nt-hero--services .nt-hero__img,
.nt-hero--page .nt-hero__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.nt-hero-swiper__pagination {
	bottom: 96px !important;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 100%;
}

.nt-hero-swiper__pagination .swiper-pagination-bullet {
	width: 28px;
	height: 8px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.5);
	opacity: 1;
	margin: 0 !important;
	transition: width 0.25s ease, background 0.25s ease, border-radius 0.25s ease;
}

.nt-hero-swiper__pagination .swiper-pagination-bullet-active {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--nt-white);
}

.nt-hero-swiper__prev,
.nt-hero-swiper__next {
	color: var(--nt-white);
	z-index: 3;
}

.nt-hero-swiper__prev::after,
.nt-hero-swiper__next::after {
	font-size: 1.4rem;
	font-weight: 700;
}

/* ==========================================================================
   Floating contact
   ========================================================================== */
.nt-floating--phone img {
	width: 32px !important;
	height: 32px !important;
}
.nt-floating-contact {
	position: fixed;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 999;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.nt-floating-contact a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 67px;
	height: 67px;
	border-radius: 50%;
	background: #C85108;
	color: var(--nt-white);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nt-floating-contact a:hover {
	transform: scale(1.05);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
	color: var(--nt-white);
}

.nt-floating-contact a img {
	display: block;
	width: 40px;
	height: 40px;
	object-fit: contain;
}

/* ==========================================================================
   Highlights
   ========================================================================== */
.nt-highlights {
	background-color: var(--nt-cream);
	background-image: url('../images/bg-v-s1.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 60px 0 80px;
}
.nt-highlights__content {
	max-width: 600px;
	text-align: center;
}

.nt-highlights__description {
	max-width: 600px;
	margin: 0 auto 40px;
	text-align: left;
	font-size: var(--nt-fs-base);
	line-height: 26px;
	color: #535050;
}
.nt-highlights__content .nt-section-title {
	text-align: left;
	margin-bottom: 0px;
}
.nt-highlights__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.nt-highlights__image {
	position: relative;
}

.nt-highlights__image img {
	width: 100%;
	border-radius: var(--nt-radius);
	clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.nt-highlights__features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.nt-feature {
	padding: 24px;
	text-align: center;
}

.nt-feature__icon {
    height: 60px;
    margin-bottom: 20px !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: #C85108;
    font-size: 1.2rem;
    margin: 0 auto;
}

.nt-feature__icon img {
	object-fit: contain;
	display: block;
}
.nt-feature__title {
    font-family: 'Phudu';
    font-size: var(--nt-fs-lg);
    font-weight: 600;
    color: #C85108;
    text-transform: uppercase;
    margin: 0 0 8px;
}

.nt-feature__text {
    font-size: var(--nt-fs-base);
    line-height: 26px;
    margin: 0;
    color: #535050;
}

/* ==========================================================================
   Featured Products
   ========================================================================== */
.nt-featured-products {
	background-color: #C85108;
	background-image: url('../images/bg-v-s2.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 60px 0 80px;
	position: relative;
	overflow: hidden;
	margin-bottom: 80px;
}

.nt-featured-products::before {
	display: none;
}

.nt-featured-products .container {
	position: relative;
	z-index: 1;
}

.nt-featured-products__carousel {
	position: relative;
	z-index: 1;
}

.nt-featured-products__carousel--outside-nav {
	display: flex;
	align-items: center;
	gap: 12px;
}

.nt-featured-products__carousel--outside-nav .nt-featured-products-swiper {
	flex: 1 1 auto;
	width: 100%;
	min-width: 0;
	padding: 24px 0 48px;
}

.nt-featured-products-swiper {
	overflow: hidden;
	padding: 24px 44px 48px;
}

.nt-featured-products-swiper .swiper-slide {
	height: auto;
	overflow: visible;
}

.nt-product-card--framed {
	background: transparent;
	border-radius: 0;
	overflow: visible;
	padding: 0;
	text-align: center;
}

.nt-product-card--framed .nt-product-card__frame {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	min-height: 430px;
	padding: 38px 32px 42px;
	background: transparent url('../images/frame-sp.png') center / 100% 100% no-repeat;
	border-radius: 0;
}
.nt-product-card--framed .nt-product-card__link {
	display: block;
	flex: 1;
}

.nt-product-card--framed .nt-product-card__image {
	position: relative;
	overflow: visible;
	margin-bottom: 10px;
}

.nt-product-card--framed .nt-product-card__image--has-badge {
	margin-top: 18px;
}

.nt-product-card__media {
	position: relative;
	aspect-ratio: 1;
	overflow: hidden;
	border-radius: 30px;
}

.nt-product-card__badge {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 128px;
    min-height: 34px;
    padding: 10px 30px;
    background: transparent url(../images/frame-btn.png) center / 100% 100% no-repeat;
    border-radius: 0;
    color: var(--nt-white);
    font-size: var(--nt-fs-md);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    white-space: nowrap;
}

.nt-product-card--framed .nt-product-card__media {
	border-radius: 30px;
}

.nt-product-card--framed .nt-product-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.nt-product-card--framed .nt-product-card__title {
	font-size: var(--nt-fs-xl);
	font-weight: 600;
	color: #C85108;
	font-family: 'Phudu';
	text-transform: uppercase;
	padding: 8px 6px 12px;
	margin: 0;
	line-height: 1.35;
}

.nt-product-card--framed .nt-product-card__btn {
	align-self: center;
	margin-top: auto;
}

.nt-featured-products-swiper__prev,
.nt-featured-products-swiper__next {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	top: 42%;
	width: 50px;
	height: 50px;
	margin-top: 0;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: #9E312A;
	color: var(--nt-white);
	cursor: pointer;
	z-index: 3;
}

.nt-featured-products-swiper__prev svg,
.nt-featured-products-swiper__next svg {
	display: block;
	width: 16px;
	height: 25px;
	flex-shrink: 0;
}

.nt-featured-products-swiper__prev {
	left: 0;
}

.nt-featured-products-swiper__next {
	right: 0;
}

.nt-featured-products__carousel--outside-nav .nt-featured-products-swiper__prev,
.nt-featured-products__carousel--outside-nav .nt-featured-products-swiper__next {
	left: auto;
	right: auto;
}

.nt-featured-products-swiper__pagination {
	bottom: 0px !important;
	z-index: 3;
}

.nt-featured-products-swiper__pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: rgba(255, 255, 255, 0.45);
	opacity: 1;
}

.nt-featured-products-swiper__pagination .swiper-pagination-bullet-active {
	background: var(--nt-white);
}

.nt-carousel {
	position: relative;
	overflow: hidden;
}

.nt-carousel__track {
	display: flex;
	gap: 24px;
	transition: transform 0.4s ease;
	max-width: 1100px;
}

.nt-carousel__item {
	flex: 0 0 calc(33.333% - 16px);
	min-width: calc(33.333% - 16px);
}

.nt-product-card {
	overflow: hidden;
	text-align: center;
	padding-bottom: 20px;
}

.nt-product-card--framed {
	overflow: visible;
}

.nt-product-card__image {
	position: relative;
	overflow: visible;
}

.nt-product-card__media {
	position: relative;
	aspect-ratio: 1;
	overflow: hidden;
}

.nt-product-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.nt-product-card__title {
	font-size: var(--nt-fs-xl);
	font-weight: 600;
	color: var(--nt-green);
	text-transform: uppercase;
	padding: 16px 12px 12px;
	margin: 0;
}

.nt-product-card__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 168px;
	min-height: 44px;
	padding: 10px 28px;
	background: transparent url('../images/frame-btn.png') center / 100% 100% no-repeat;
	border: none;
	border-radius: 0;
	color: var(--nt-white);
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	text-decoration: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.nt-product-card__btn:hover,
.nt-product-card__btn:focus {
	background: transparent url('../images/frame-btn.png') center / 100% 100% no-repeat;
	color: var(--nt-white);
	opacity: 0.92;
	transform: translateY(-1px);
}

.nt-carousel__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--nt-orange-dark);
	border: none;
	color: var(--nt-white);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	z-index: 2;
}

.nt-carousel__prev {
	left: -10px;
}

.nt-carousel__next {
	right: -10px;
}

/* ==========================================================================
   Product Categories
   ========================================================================== */
/* .nt-categories {
	padding: 60px 0 0px;
} */

.nt-categories__icons {
	margin-bottom: 40px;
	justify-content: center;
	--bs-gutter-x: 50px;
	--bs-gutter-y: 0.75rem;
}

.nt-categories__icons > .col {
	flex: 0 0 auto;
	width: auto;
	max-width: 100%;
}

.nt-category-icon {
	text-align: center;
}

.nt-category-icon__img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 10px;
}

.nt-category-icon__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nt-category-icon__label {
    font-size: var(--nt-fs-base);
    font-weight: 700;
	color:#6d6c6c;
    text-transform: uppercase;
}

.nt-categories__products .col {
	display: flex;
}

.nt-categories__products .nt-product-card--framed {
	width: 100%;
}

.nt-categories__products .nt-product-card--framed .nt-product-card__frame {
	min-height: 100%;
	height: 100%;
	padding: 28px 24px 32px;
}

.nt-categories__products .nt-product-card--framed .nt-product-card__image {
	margin-bottom: 14px;
}

.nt-categories__products .nt-product-card--framed .nt-product-card__media {
	border-radius: 24px;
}

.nt-categories__products .nt-product-card--framed .nt-product-card__title {
	font-family: var(--font-accent);
	font-size: var(--nt-fs-xl);
	font-weight: 600;
	color: #c85108;
	line-height: 1.3;
	padding: 0 4px 14px;
}

.nt-categories__products .nt-product-card__btn {
	min-width: 152px;
	min-height: 42px;
	font-size: 0.72rem;
}

.nt-products-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 40px;
}

.nt-product-card--beige {
	background: var(--nt-cream-dark);
}

.nt-categories__footer {
	text-align: center;
}

.nt-categories__footer .nt-section-title--decorated::before,
.nt-categories__footer .nt-section-title--decorated::after {
	display: none;
}

.nt-categories__footer-btn {
	position: relative;
	display: inline-block;
}



.nt-categories__footer-btn::before {
	right: calc(100% + 16px);
}

.nt-categories__footer-btn::after {
	left: calc(100% + 16px);
}

.nt-categories__footer-btn .btn.nt-btn.nt-categories__all-btn {
	display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    min-height: 52px;
    padding: 8px 36px;
    background: transparent url(../images/btn-all.png) center / 100% 100% no-repeat;
    border: none;
    border-radius: 0;
    color: #C85108;
    font-family: 'Phudu', var(--font-accent);
    font-size: var(--nt-fs-lg);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
    opacity: 1;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.nt-categories__footer-btn .btn.nt-btn.nt-categories__all-btn:hover,
.nt-categories__footer-btn .btn.nt-btn.nt-categories__all-btn:focus {
	background: transparent url('../images/btn-all.png') center / 100% 100% no-repeat;
	border: none;
	opacity: 0.92;
	transform: translateY(-1px);
}

/* ==========================================================================
   Brand Story
   ========================================================================== */
.section-image {
	position: relative;
	z-index: 1;
	width: 100%;
	margin: 0;
	padding: 0;
	line-height: 0;
}

.section-image__inner {
	width: 100%;
	max-width: 100%;
}

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

.nt-brand-story {
	position: relative;
	z-index: 2;
	margin-top: -170px;
	padding: 0px;
	--nt-brand-story-slide-h: clamp(360px, 42vw, 560px);
}

.nt-brand-story__intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: var(--nt-fs-base);
    line-height: 26px;
    color:#6d6c6c;
}

.nt-brand-story__slider {
	position: relative;
	width: 100%;
	max-width: 100%;
	padding: 8px 0 16px;
	overflow: hidden;
	min-height: var(--nt-brand-story-slide-h);
}

.nt-brand-story-swiper {
	overflow: hidden;
	padding: 0 0 56px;
	height: calc(var(--nt-brand-story-slide-h) + 56px);
}

.nt-brand-story-swiper .swiper-wrapper {
	align-items: center;
	height: var(--nt-brand-story-slide-h);
}

.nt-brand-story-swiper .swiper-slide {
	width: auto;
	height: var(--nt-brand-story-slide-h);
	min-height: var(--nt-brand-story-slide-h);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 34px;
	overflow: hidden;
}

.nt-brand-story__card {
	margin: 0 auto;
	width: 78%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: width 0.45s ease;
}

.nt-brand-story-swiper .swiper-slide-active .nt-brand-story__card {
	width: 100%;
}
.nt-brand-story__container {
    background: #F9EAD2;
    border-radius: 30px;
    padding: 60px 15px;
}
.nt-brand-story__card img {
	display: block;
	width: 100%;
	height: var(--nt-brand-story-slide-h);
	max-height: var(--nt-brand-story-slide-h);
	object-fit: cover;
	border-radius: var(--nt-radius);
	transition: transform 0.45s ease, box-shadow 0.45s ease, opacity 0.45s ease;
	transform-origin: center center;
	user-select: none;
	-webkit-user-drag: none;
	pointer-events: none;
}

.nt-brand-story-swiper .swiper-slide-active .nt-brand-story__card img {
	transform: scale(1);
}

.nt-brand-story-swiper .swiper-slide:not(.swiper-slide-active) .nt-brand-story__card img {
	opacity: 0.92;
	transform: scaleY(0.78);
	border-radius: 30px;
}

.nt-brand-story-swiper__prev,
.nt-brand-story-swiper__next {
	top: 42%;
	color: var(--nt-orange);
	z-index: 4;
}

.nt-brand-story-swiper__prev::after,
.nt-brand-story-swiper__next::after {
	font-size: 1.5rem;
	font-weight: 700;
}

.nt-brand-story-swiper__pagination {
	bottom: 8px !important;
	z-index: 4;
}

.nt-brand-story-swiper__pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: rgba(0, 0, 0, 0.2);
	opacity: 1;
}

.nt-brand-story-swiper__pagination .swiper-pagination-bullet-active {
	background: var(--nt-orange);
}

/* ==========================================================================
   Reviews
   ========================================================================== */
.nt-reviews {
	padding: 60px 0 0px;
	overflow: hidden;
}

.nt-reviews__slider {
	padding: 0 24px;
}

.nt-reviews-swiper {
	overflow: hidden;
}

.nt-reviews-swiper .swiper-slide {
	width: min(745px, 88vw);
	height: auto;
	box-sizing: border-box;
}

.nt-review-card {
	background: #3C693B;
	border-radius: 20px;
	padding: 24px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	align-items: stretch;
	color: var(--nt-white);
	height: 330px;
	max-height: 330px;
	min-width: 0;
}

.nt-review-card__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	position: relative;
	min-width: 0;
}
.nt-review-card__content-detail {
    padding-bottom: 40px;
}
.nt-review-card__badge {
	position: absolute;
	top: 0;
	display: inline-block;
	background: var(--nt-cream);
	color: var(--nt-green);
	font-size: var(--nt-fs-sm);
	font-weight: 700;
	line-height: 1.2;
	padding: 6px 25px;
	border-radius: 999px;
	margin-bottom: 14px;
}

.nt-review-card__name {
	font-size: var(--nt-fs-sm);
	font-weight: normal;	
	margin: 0 0 10px;
	line-height: 24px;
}

.nt-review-card__text {
    font-size: var(--nt-fs-sm);
    line-height: 24px;
    margin: 0;
    opacity: 0.95;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.nt-review-card__media {
	border-radius: 23px;
	overflow: hidden;
	min-height: 100%;
	max-height: 280px;
}

.nt-review-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 172px;
	object-fit: cover;
	border-radius: 16px;
	user-select: none;
	-webkit-user-drag: none;
	pointer-events: none;
}

/* ==========================================================================
   News
   ========================================================================== */
.nt-news {
	padding: 60px 0 80px;
}

.nt-news-header {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-bottom: 40px;
}

.nt-news-header__title {
	flex-shrink: 0;
	margin: 0;
	font-family: 'Phudu', var(--font-accent);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 700;
	color: #c85108;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	line-height: 1.2;
	text-align: left;
}

.nt-news-header__decor {
	flex: 1 1 auto;
	display: flex;
	align-items: center;
	min-width: 0;
}

.nt-news-header__decor-line {
	flex: 1 1 auto;
	height: 3px;
	background: #3c693b;
}

.nt-news-header__decor-diamond {
	flex-shrink: 0;
	width: 13px;
	height: 13px;
	background: #3c693b;
	transform: rotate(45deg);
	margin-left: 4px;
}

.nt-news__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: stretch;
}

.nt-news__small-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 20px;
	height: 100%;
	min-height: 0;
}

.nt-news-card {
	border-radius: 20px;
	overflow: hidden;
}

.nt-news__small-grid .nt-news-card {
	height: 100%;
	min-height: 0;
	display: flex;
	flex-direction: column;
	max-height: 330px;
}

.nt-news__small-grid .nt-news-card > a {
	display: flex;
	flex-direction: column;
	flex: 1;
	height: 100%;
	min-height: 0;
}

.nt-news-card__image {
	max-height: 280px;
	overflow: hidden;
	border-radius: 34px;
}

.nt-news__small-grid .nt-news-card__image {
	flex: 1 1 auto;
	max-height: none;
	min-height: 100px;
}

.nt-news-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nt-news__small-grid .nt-news-card__body {
	flex-shrink: 0;
}

.nt-news-card__body {
	display: flex;
	align-items: center;
	padding: 10px 0;
}

.nt-news-card__title {
	font-family: 'Phudu';
	text-transform: uppercase;
	font-size: var(--nt-fs-base);
	font-weight: 600;
	color: #6D6C6C;
	margin: 0;
	line-height: 1.4;
}

.nt-news-card--featured {
	height: 100%;
	min-height: 0;
	display: flex;
	flex-direction: column;
}

.nt-news-card--featured > a {
	display: flex;
	flex-direction: column;
	flex: 1;
	height: 100%;
	min-height: 0;
}

.nt-news-card--featured .nt-news-card__image {
	flex: 1 1 auto;
	max-height: none;
	aspect-ratio: auto;
	min-height: 0;
}

.nt-news-card--featured .nt-news-card__image img {
	height: 100%;
	min-height: 200px;
}

.nt-news-card--featured .nt-news-card__body {
	flex-shrink: 0;
}

.nt-news-card--featured .nt-news-card__title {
	font-size: var(--nt-fs-xl);
	color: #C85108;
	text-align: center;
	display: block;
	width: 100%;
}

.nt-news__footer {
	text-align: center;
	margin-top: 40px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
	background: #C85108;
	color: var(--nt-white);
}

.nt-footer__main {
	padding: 80px 0 40px;
}

.nt-footer__logo {
	max-width: 222px;
	width: 100%;
	height: auto;
	margin-bottom: 16px;
	display: block;
}

.nt-footer__brand-name {
	font-family: var(--font-accent);
	font-size: var(--nt-fs-lg);
	font-weight: 600;
	text-transform: uppercase;
	margin: 0 0 20px;
	line-height: 1.2;
	letter-spacing: 0.02em;
}

.nt-footer__contact {
	list-style: none;
	margin: 0;
	padding: 0;
}
.nt-footer__main {
	font-variant-numeric: lining-nums tabular-nums;
    font-feature-settings: 'lnum' 1, 'tnum';
}
.nt-footer__contact li {
	display: flex;
	align-items: baseline;
	gap: 10px;
	font-size: var(--nt-fs-base);
	line-height: 1.6;
	margin-bottom: 12px;
	color: rgba(255, 255, 255, 0.95);
	font-variant-numeric: lining-nums tabular-nums;
    font-feature-settings: 'lnum' 1, 'tnum';
}

.nt-footer__contact li:last-child {
	margin-bottom: 0;
}

.nt-footer__contact svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
	flex-shrink: 0;
	margin-top: 3px;
}

.nt-footer__contact strong {
	font-weight: 700;
}

.nt-footer__block h4 {
	font-family: var(--font-accent);
	font-size: var(--nt-fs-md);
	font-weight: 500;
	text-transform: uppercase;
	margin: 0 0 14px;
	letter-spacing: 0.04em;
	line-height: 1.3;
}

.nt-footer__block ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nt-footer__block li {
	margin-bottom: 10px;
}

.nt-footer__block li:last-child {
	margin-bottom: 0;
}

.nt-footer__block a {
	font-size: var(--nt-fs-base);
	color: rgba(255, 255, 255, 0.92);
	line-height: 1.5;
}

.nt-footer__block a:hover {
	color: var(--nt-white);
	opacity: 1;
}

.nt-footer__text-group {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.nt-footer__text {
	font-size: var(--nt-fs-base);
	line-height: 1.6;
	margin: 0;
	color: rgba(255, 255, 255, 0.92);
}

.nt-footer__text strong {
	font-weight: 700;
}

.nt-footer__map {
	background: rgba(0, 0, 0, 0.12);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.nt-footer__map iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

.nt-footer__bottom {
	background: #9E312A;
	padding: 14px 0;
	text-align: center;
}

.nt-footer__bottom p {
    margin: 0;
    font-size: clamp(0.75rem, 1.4vw, 1rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    font-variant-numeric: lining-nums tabular-nums;
    font-feature-settings: 'lnum' 1, 'tnum' 1;
    letter-spacing: 0.08em;
}

/* Footer responsive */
@media (max-width: 1024px) {
	.nt-footer__main {
		padding: 36px 0 32px;
	}
	.nt-services-reviews__grid .nt-review-card {
		grid-template-columns: 1fr;
	}
	.nt-services-reviews__grid .nt-review-card__media {
		order: -1;
	}
	.nt-services-reviews__grid .nt-review-card__media img { 
		height: auto;
	}
	.nt-services-reviews__grid .nt-review-card__content-detail {
		margin-top: 10px;
		padding-bottom: 10px;
	}
	.nt-footer__grid > .nt-footer__col--brand,
	.nt-footer__grid > .nt-footer__col--links {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.nt-footer__col--brand {
		text-align: center;
		padding-right: 0;
		padding-bottom: 24px;
		margin-bottom: 4px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	}

	.nt-footer__col--brand .nt-footer__logo {
		margin-left: auto;
		margin-right: auto;
		max-width: 170px;
	}

	.nt-footer__brand-name {
		font-size: var(--nt-fs-md);
		margin-bottom: 16px;
	}

	.nt-footer__contact {
		max-width: 520px;
		margin: 0 auto;
	}

	.nt-footer__contact li {
		font-size: var(--nt-fs-sm);
		text-align: left;
	}

	.nt-footer__links-row > :nth-child(1),
	.nt-footer__links-row > :nth-child(2),
	.nt-footer__links-row > :nth-child(4),
	.nt-footer__links-row > :nth-child(5) {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.nt-footer__links-row > :nth-child(3),
	.nt-footer__links-row > :nth-child(6) {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.nt-footer__block h4 {
		font-size: var(--nt-fs-sm);
		margin-bottom: 10px;
	}

	.nt-footer__block a,
	.nt-footer__text {
		font-size: var(--nt-fs-sm);
		line-height: 1.5;
	}

	.nt-footer__map {
		min-height: 220px;
		margin-top: 4px;
	}
}

@media (max-width: 991.98px) {
	.nt-footer__col--brand {
		text-align: center;
		padding-bottom: 8px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	}

	.nt-footer__col--brand .nt-footer__logo {
		margin-left: auto;
		margin-right: auto;
		max-width: 180px;
	}

	.nt-footer__contact li {
		text-align: left;
		max-width: 420px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (max-width: 767.98px) {
	.nt-footer__main {
		padding: 36px 0 28px;
	}

	.nt-footer__links-row > [class*="col-"] {
		flex: 0 0 100%;
		max-width: 100%;
		padding-top: 4px;
		padding-bottom: 4px;
	}

	.nt-footer__block {
		height: 100%;
	}

	.nt-footer__map {
		margin-top: 4px;
		min-height: 200px;
	}

	.nt-footer__bottom {
		padding: 12px 0;
	}

	.nt-footer__bottom p {
		line-height: 1.5;
		padding: 0 12px;
	}
}

@media (max-width: 575.98px) {
	.nt-footer__col--brand .nt-footer__logo {
		max-width: 140px;
	}

	.nt-footer__block h4 {
		margin-bottom: 10px;
	}

	.nt-footer__block li {
		margin-bottom: 8px;
	}

	.nt-footer__links-row {
		--bs-gutter-y: 1.25rem;
	}
}

@media (min-width: 992px) {
	.nt-footer__col--brand {
		padding-right: 24px;
	}

	.nt-footer__col--links {
		padding-left: 12px;
	}
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
	:root {
		--nt-fs-base: 19px;
		--nt-fs-lg: 28px;
		--nt-fs-xl: 32px;
		--nt-fs-2xl: 36px;
	}

	.nt-featured-products-swiper {
		padding: 8px 40px 48px;
	}

	.nt-carousel__item {
		flex: 0 0 calc(50% - 12px);
		min-width: calc(50% - 12px);
	}

	.nt-products-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.nt-brand-story__card {
		width: 100%;
	}
}

@media (max-width: 1024px) {
	.site-header .row {
		position: relative;
	}

	.nt-header__desktop {
		display: none !important;
	}

	.nt-header__mobile-toggle {
		display: block;
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		margin-left: 0 !important;
	}

	.menu-toggle {
		display: block;
	}

	.nt-header__logo {
		text-align: center !important;
		margin: 0 auto;
	}

	.nt-header__logo a,
	.nt-header__logo .custom-logo-link {
		display: inline-block;
	}

	.nt-header__logo img,
	.nt-header__logo .custom-logo-link {
		margin-left: auto !important;
		margin-right: auto !important;
		padding: 5px 0;
		margin-top: 10px;
	}
}

@media (max-width: 768px) {
	:root {
		--nt-fs-xs: 12px;
		--nt-fs-sm: 16px;
		--nt-fs-base: 18px;
		--nt-fs-md: 24px;
		--nt-fs-lg: 26px;
		--nt-fs-xl: 28px;
		--nt-fs-2xl: 32px;
	}

	.nt-topbar__contact {
		display: none;
	}
	.nt-about-story {
		padding: 72px 0 0px !important;
	}
	.nt-about-story .nt-brand-story-swiper {
        padding: 0px !important;
	}
	.nt-featured-products { 
		margin-bottom: 0px !important;
	}
	.nt-hero--home,
	.nt-hero--policy,
	.nt-hero--services,
	.nt-hero--page {
		height: clamp(360px, calc(52vw + 80px), 500px);
	}

	.nt-highlights__grid,
	.nt-news__grid {
		grid-template-columns: 1fr;
	}

	.nt-news-header {
		gap: 16px;
		margin-bottom: 28px;
	}

	.nt-news-header__title {
		font-size: clamp(1.25rem, 5vw, 1.75rem);
	}

	.nt-news__small-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: auto;
		gap: 12px;
		height: auto;
	}

	.nt-news__small-grid .nt-news-card {
		height: auto;
		max-height: none;
	}

	.nt-news__small-grid .nt-news-card__image {
		flex: none;
		max-height: 140px;
		min-height: 0;
	}

	.nt-news__small-grid .nt-news-card__body {
		padding: 8px 0;
	}

	.nt-news__small-grid .nt-news-card__title {
		font-size: clamp(0.75rem, 3.2vw, var(--nt-fs-sm));
		line-height: 1.3;
	}

	.nt-news__small-grid .nt-news-card__icon svg {
		width: 32px;
		height: 32px;
	}

	.nt-news-card--featured {
		height: auto;
	}

	.nt-news-card--featured > a {
		height: auto;
	}

	.nt-news-card--featured .nt-news-card__image {
		flex: none;
		aspect-ratio: 4 / 3;
	}

	.nt-highlights__features,
	.nt-products-grid {
		grid-template-columns: 1fr;
	}

	.nt-reviews__slider {
		padding: 0 12px;
		overflow: hidden;
		max-width: 100%;
	}

	.nt-reviews-swiper {
		overflow: hidden;
		max-width: 100%;
	}

	.nt-reviews-swiper .swiper-slide {
		width: min(100%, calc(100vw - 24px));
	}

	.nt-review-card {
		grid-template-columns: 1fr;
		grid-template-rows: auto 1fr;
		padding: 16px;
		gap: 12px;
		height: auto;
		max-height: none;
		min-height: 0;
	}

	.nt-review-card__content {
		justify-content: flex-start;
	}

	.nt-review-card__content-detail {
		padding-bottom: 0;
	}

	.nt-review-card__badge {
		position: static;
		margin-bottom: 10px;
	}

	.nt-review-card__media {
		max-height: 180px;
		min-height: 0;
		order: -1;
	}

	.nt-review-card__media img {
		min-height: 0;
		height: 180px;
		max-height: 180px;
	}

	.nt-featured-products-swiper {
		padding: 8px 0 48px;
	}

	.nt-featured-products-swiper__prev,
	.nt-featured-products-swiper__next,
	.nt-featured-products-swiper__prev.swiper-button-disabled,
	.nt-featured-products-swiper__next.swiper-button-disabled {
		display: none !important;
	}

	.nt-featured-products__carousel--outside-nav {
		gap: 0;
	}

	.nt-product-card--framed .nt-product-card__frame {
		min-height: 390px;
		padding: 30px 26px 36px;
	}

	.v-2.nt-product-card--framed .nt-product-card__frame {
		min-height: auto !important;
		height: auto !important;
		padding: 18px 14px 22px;
	}

	.v-2.nt-product-card--framed .nt-product-card__link {
		flex: 0 0 auto;
	}

	.v-2.nt-product-card--framed .nt-product-card__media {
		aspect-ratio: 1;
		height: auto;
		width: 100%;
	}

	.v-2.nt-product-card--framed .nt-product-card__media img {
		width: 100%;
		height: auto;
		aspect-ratio: 1;
		object-fit: cover;
	}

	.nt-categories__products .nt-product-card--framed .nt-product-card__frame {
		min-height: 100%;
		padding: 22px 18px 28px;
	}

	.nt-categories__products .v-2.nt-product-card--framed .nt-product-card__frame {
		min-height: auto !important;
		height: auto !important;
	}

	

	.nt-brand-story {
		--nt-brand-story-slide-h: clamp(280px, 55vw, 360px);
	}

	.nt-brand-story-swiper {
		padding: 0 0 52px;
		height: calc(var(--nt-brand-story-slide-h) + 52px);
	}

	.nt-brand-story__card {
		width: 88%;
	}

	.nt-brand-story-swiper .swiper-slide-active .nt-brand-story__card {
		width: 100%;
	}

	.nt-floating-contact {
		right: 8px;
	}

	.nt-floating-contact a {
		width: 46px;
		height: 46px;
	}

	.nt-floating-contact a img {
		width: 34px;
		height: 34px;
	}
}

@media (max-width: 480px) {
	.nt-carousel__item {
		flex: 0 0 100%;
		min-width: 100%;
	}
}

/* WordPress menu compatibility */
.nt-header__nav-left .menu,
.nt-header__nav-right .menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 28px;
}

.nt-header__nav-left .menu a,
.nt-header__nav-right .menu a {
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--nt-green);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.site-main--front {
	padding: 0;
	margin: 0;
}

#content {
	margin: 0;
}

.post-type-archive-product .site-main,
.tax-product_category .site-main,
.single-product .site-main {
	padding: 0;
	margin: 0;
	max-width: none;
}

/* ==========================================================================
   Contact popup
   ========================================================================== */
.nt-contact-popup {
	position: fixed;
	inset: 0;
	z-index: 10050;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px 16px;
	pointer-events: none;
	visibility: hidden;
}

.nt-contact-popup.is-open {
	pointer-events: auto;
	visibility: visible;
}

.nt-contact-popup__overlay {
	position: absolute;
	inset: 0;
	background: #A9A9A9;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.nt-contact-popup.is-open .nt-contact-popup__overlay {
	opacity: 0.8;
}

.nt-contact-popup__dialog {
	position: relative;
	width: min(650px, 100%);
	/* max-height: calc(100vh - 40px); */
	overflow-y: hidden;
	transform: translateY(12px) scale(0.98);
	opacity: 0;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.nt-contact-popup.is-open .nt-contact-popup__dialog {
	transform: translateY(0) scale(1);
	opacity: 1;
}

.nt-contact-popup__close {
	position: absolute;
	top: 4px;
	right: 4px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: #c85108;
	color: var(--nt-white);
	font-size: 0;
	line-height: 0;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.nt-contact-popup__close span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 26px;
	line-height: 1;
	transform: translateY(-1px);
}

.nt-contact-popup__close:hover {
	opacity: 0.9;
	transform: scale(1.05);
}

.nt-contact-popup__frame {
    position: relative;
    min-height: 0;
    padding: clamp(80px, 25vh, 190px) clamp(20px, 5vw, 32px) clamp(20px, 4vh, 40px);
    background: url(../images/bg-form-1.png) center top / 100% 100% no-repeat;
}

.nt-contact-popup__logo {
    position: absolute;
    top: 60px;
    left: 50%;
    z-index: 2;
    width: clamp(80px, 140px, 160px);
    transform: translateX(-50%);
}

.nt-contact-popup__logo img {
	width: 100%;
	height: auto;
	margin: 0 auto;
}

.nt-contact-popup__body {
    padding: clamp(16px, 2.5vh, 28px) 22px clamp(20px, 3vh, 32px);
    text-align: center;
    background: #fbf0da;
    border-radius: 54px;
    max-width: 580px;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.nt-contact-popup__title {
	margin-bottom: clamp(8px, 1.5vh, 14px);
	font-size: var(--nt-fs-lg);
}

.nt-contact-popup__intro {
	margin: 0;
	margin-bottom: clamp(10px, 2vh, 22px);
	font-size: var(--nt-fs-sm);
	line-height: 1.75;
	color: #535050;
}

.nt-contact-popup__form {
	display: flex;
	flex-direction: column;
	gap: clamp(6px, 1vh, 12px);
	align-items: center;
	position: relative;
}

.nt-contact-popup__form input {
    width: 100%;
    padding: clamp(10px, 1.5vh, 14px) 20px;
    border: none;
    border-radius: 999px;
    background: #f9ead2;
    font-family: var(--font-accent);
    font-size: var(--nt-fs-sm);
    color: #c85108;
    text-align: left;
    font-weight: bold;
    text-transform: uppercase;
}
.nt-contact-popup__form input::placeholder {
	color: #c85108;
	opacity: 0.85;
}

.nt-contact-popup__form input:focus {
	outline: 2px solid rgba(200, 81, 8, 0.35);
	outline-offset: 2px;
}

.nt-btn--contact-popup {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 180px;
	min-height: 48px;
	margin-top: 4px;
	padding: 12px 36px;
	border: none;
	border-radius: 0;
	background: transparent url('../images/btn-frame-4.png') center / 100% 100% no-repeat;
	color: #c85108;
	font-family: var(--font-accent);
	font-size: var(--nt-fs-md);
	font-weight: 600;
	text-transform: uppercase;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.nt-btn--contact-popup:hover {
	background: transparent url('../images/btn-frame-4.png') center / 100% 100% no-repeat;
	color: #c85108;
	opacity: 0.92;
	transform: translateY(-1px);
}

.nt-contact-form__message {
	margin: 0;
	font-size: var(--nt-fs-sm);
	line-height: 1.5;
	text-align: center;
}

.nt-contact-form__message.is-loading {
	color: #fff;
	font-weight: 600;
}

.nt-contact-form__message.is-success {
	color: #fff;
}

.nt-contact-form__message.is-error {
	color: #fff;
}
.nt-contact-popup__body .nt-contact-form__message.is-loading {
	color: #c85108;
	font-weight: 600;
}
.nt-contact-popup__body .nt-contact-form__message.is-success {
	color: #c85108;
	font-weight: 600;
}
.nt-contact-popup__body .nt-contact-form__message.is-error {
	color: #c85108;
	font-weight: 600;
}

.nt-contact-form__btn-loading {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.nt-btn.is-loading .nt-contact-form__btn-text {
	display: none;
}

.nt-btn.is-loading .nt-contact-form__btn-loading {
	display: inline-flex !important;
}

.nt-contact-form__spinner {
	display: inline-block;
	width: 18px;
	height: 18px;
	border: 2px solid rgba(255, 255, 255, 0.35);
	border-top-color: #ffffff;
	border-radius: 50%;
	animation: nt-contact-form-spin 0.75s linear infinite;
	flex-shrink: 0;
}

.nt-btn--contact-popup.is-loading .nt-contact-form__spinner {
	border-color: rgba(200, 81, 8, 0.25);
	border-top-color: #c85108;
}

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

.nt-contact-popup__form.is-submitting,
.nt-contact-form.is-submitting {
	position: relative;
}


.nt-contact-popup__form.is-submitting input,
.nt-contact-form.is-submitting input {
	opacity: 0.72;
}

.nt-contact-popup__form.is-submitting .nt-btn,
.nt-contact-form.is-submitting .nt-btn {
	position: relative;
	z-index: 2;
	opacity: 1;
}

body.nt-contact-popup-open {
	overflow: hidden;
}

@media (max-width: 480px) {
	.nt-contact-popup__frame {
		min-height: 0;
		padding-top: 72px;
		padding-bottom: 24px;
	}

	.nt-contact-popup__body {
		padding: 22px 16px 26px;
	}

	.nt-contact-popup__logo {
		width: 88px;
	}
}

@media (min-width: 1600px) {
    .container {
        max-width: 1500px !important;
    }
}

@media (max-width: 1550px) {
   :root {
		--nt-fs-xl: 22px;
		--nt-fs-md: 20px;
		--nt-fs-lg: 20px;	
		--nt-fs-base: 16px;
		--nt-fs-sm: 16px;
   }
   .v-2.nt-product-card--framed .nt-product-card__frame {
	 min-height: auto;
   }
   .nt-brand-story__card {
		width: 100%;
   }
	.nt-contact-popup__dialog {
		width: min(570px, 100%);
	}

	.nt-contact-popup__frame {
		min-height: 0;
		padding: clamp(99px, 18vw, 140px) clamp(14px, 5vw, 32px) clamp(10px, 8vw, 21px);
	}

	.nt-contact-popup__logo {
        top: 50px;
        width: 120px;
    }

	.nt-contact-popup__body {
		padding: 18px 16px 22px;
		border-radius: 32px;
		max-width: 500px;
	}

	.nt-contact-popup__title {
		font-size: 22px;
		margin-bottom: 14px;
	}

	.nt-contact-popup__intro {
		font-size: 16px;
		margin-bottom: 12px;
		line-height: 20px;
	}

	.nt-contact-popup__form {
		gap: 8px;
	}

	.nt-contact-popup__form input {
		width: 100%;
		padding: 10px 20px;
		font-size: 13px;
	}

	.nt-btn--contact-popup {
		min-width: 150px;
		min-height: 38px;
		padding: 8px 24px;
		font-size: var(--nt-fs-sm);
	}
}


@media (max-width: 678px) {
	:root {
		 --nt-fs-xl: 20px;
		 --nt-fs-2xl:28px;
		 --nt-fs-md:20px;
		 --nt-fs-lg:20px;
	}
	.nt-news-card__image {
		border-radius: 15px;
	}
	.nt-categories__icons {
		--bs-gutter-x: 10px;
	}
	section.nt-categories {
		margin-top: 40px;
	}
	.nt-category-icon__img {
		width: 120px;
		height: 120px;
	}
	.nt-footer__contact li {
		align-items: flex-start;
	}
	.nt-contact-popup__dialog {
		width: min(400px, 100%);
	}
	.nt-contact-popup {
		align-items: flex-start;
	}

	.nt-contact-popup__frame {
		min-height: 0;
		padding: clamp(150px, 14vw, 110px) 14px 20px;
	}

	.nt-contact-popup__logo {
		top: 60px;
		width: clamp(68px, 30vw, 100px);
	}

	.nt-contact-popup__body {
		padding: 18px 14px 22px;
		border-radius: 28px;
		max-width: 360px;
	}

	.nt-contact-popup__close {
		width: 30px;
		height: 30px;
	}

	.nt-contact-popup__close span {
		font-size: 22px;
		transform: translateY(-1px);
	}
	section.section-image {
		display: none;
	}
	.nt-brand-story {
		position: relative;
		z-index: 2;
		margin-top: 25px;
		padding: 0px 0 25px;
	}
	.nt-reviews {
		background: var(--nt-cream);
		padding: 20px 0 10px;
		overflow: hidden;
	}
	.nt-brand-story__container {
		padding: 30px 10px;
	}
	.nt-brand-story-swiper .swiper-slide {
		height: var(--nt-brand-story-slide-h) !important;
		min-height: var(--nt-brand-story-slide-h);
	}
	.nt-featured-products  {
		padding: 30px 0 30px;
	}
	.site-footer {
		margin-top: 10px;
	}
	.nt-blog-albums {
		padding: 30px 0 30px;
	
	}
 }

 .v-2.nt-product-card--framed .nt-product-card__frame {
    position: relative;
    background: #F9EAD2 !important;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    padding: 20px;
    border-radius: 52px;
}
p.nt-section-description {
    max-width: 745px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 30px;
}