/* Guru Cloud Veterinar - Main Styles */

.container {
	width: 100%;
	max-width: 1360px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 30px;
	padding-right: 30px;
	box-sizing: border-box;
}
@media (max-width: 767px) {
	.container { padding-left: 16px; padding-right: 16px; }
}

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Manrope:wght@200..800&display=swap');
/*---------base-domain-css---------------*/

body {
  margin: 0;
  font-family: system-ui, sans-serif;
  color: #222;
  background-color: #fff;
  
}
html {
  scroll-behavior: smooth;
}
.in-stock {
  display: none;
}
button {
    all: unset;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.container {
    min-height: 80vh;
}
/* Chrome, Safari, Edge */
.mini-cart-qty-input::-webkit-outer-spin-button,
.mini-cart-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
.mini-cart-qty-input {
    -moz-appearance: textfield;
}

/* reset inputu */
.mini-cart-qty-input{
    appearance: none;
}





/* Reset všetkých <a> štýlov */
a {
  color: inherit;
  text-decoration: none;
  background: none;
}
p {
    margin: 0; 
    padding: 0;
    display: block; 
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
img {
    margin: 0;
    padding: 0;
    overflow: hidden;    
}



.container {
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  padding-top: 40px;
  padding-bottom: 40px;
}

.pismo {
    font-family: 'Noto Serif', serif;
}
.pismo2 {
    font-family: 'Manrope', sans-serif;
}




/*-------------colors--------------------*/
.bezova {
	color: #FEF9E9;
}
.bezova-pozadie {
	background-color: #FEF9E9;
}
.bezova2 {
	color: #FEF5DC;
}
.bezova2-pozadie {
	background-color: #FEF5DC;
}
.bezova3 {
	color: #FEF7EC;
}
.bezova3-pozadie {
	background-color: #FEF7EC;
}
.cierna {
	color: black;
}
.cierna-pozadie {
	background-color: black;
}
.cierna2 {
	color: #20201D;
}
.cierna2-pozadie {
	background-color: #20201D;
}
.cierna3 {
	color: #292927;
}
.cierna3-pozadie {
	background-color: #292927;
}
.biela {
	color: white;
}
.biela-pozadie {
	background-color: white;
}
.zlata {
	color: #AB784B;
}
.zlata-pozadie {
	background-color: #AB784B;
}
.tmava {
	color: #57534E;
}
.tmava-pozadie {
	background-color: #57534E;
}
.seda {
	color: #6c6c6c;
}

.box-shadow {
    box-shadow: 0px 3px 5px 1px #cdcdcd;
}
/*-----HEADER------------*/
.site-header { position: relative; z-index: 900; }

.megamenu-wrapper { position: static; }
.megamenu-trigger {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}
.megamenu-trigger .mm-chevron {
	transition: transform 0.22s ease;
	flex-shrink: 0;
}
.megamenu-wrapper.mm-active .mm-chevron { transform: rotate(180deg); }

.megamenu {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	z-index: 800;
	padding-top: 8px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
	pointer-events: none;
}
.megamenu.mm-open {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: all;
	transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0s;
}
.megamenu-inner {
	background: #fff;
	box-shadow: 0 24px 64px rgba(0,0,0,0.13), 0 2px 8px rgba(0,0,0,0.06);
	border-radius: 0 0 20px 20px;
	overflow: hidden;
	display: flex;
}
.mm-left {
	width: 260px;
	flex-shrink: 0;
	background: linear-gradient(160deg, #1c0f02 0%, #2e1a06 100%);
	padding: 40px 30px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 32px;
}
.mm-left-label {
	font-size: 11px;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: rgba(171,120,75,0.8);
	font-weight: 600;
	margin-bottom: 14px;
}
.mm-left-title { font-size: 22px; font-weight: 700; color: #fff; line-height: 1.4; margin-bottom: 0; }
.mm-left-perex { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.8; margin-top: 14px; }
.mm-left-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #AB784B;
	color: #fff;
	text-decoration: none;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	padding: 13px 22px;
	border-radius: 10px;
	transition: background 0.18s;
	align-self: flex-start;
}
.mm-left-cta:hover { background: #c48f5e; }
.mm-right {
	flex: 1;
	padding: 20px 18px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4px;
	align-content: start;
}
.mm-card {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 14px;
	padding: 16px 18px;
	border-radius: 12px;
	text-decoration: none;
	color: inherit;
	transition: background 0.15s ease;
	position: relative;
}
.mm-card:hover { background: #f7f2ec; }
.mm-card-icon {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	background: #f3ece4;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background 0.15s;
	margin-top: 1px;
}
.mm-card:hover .mm-card-icon { background: #e8d8c4; }
.mm-card-icon svg { width: 22px; height: 22px; }
.mm-card-content { flex: 1; min-width: 0; }
.mm-card-title { font-size: 14px; font-weight: 700; color: #1a1107; line-height: 1.3; margin-bottom: 4px; }
.mm-card-desc { font-size: 12.5px; color: #6b6055; line-height: 1.55; margin-bottom: 7px; }
.mm-card-tags { font-size: 11px; color: #AB784B; font-weight: 600; letter-spacing: 0.3px; }
.mm-card.mm-card-wide { grid-column: 1 / -1; background: #f9f5f1; border: 1px solid #e8ddd2; }
.mm-card.mm-card-wide:hover { background: #f2ebe2; }
.mm-divider { width: 1px; background: rgba(0,0,0,0.06); flex-shrink: 0; }

@media (max-width: 1024px) {
	.megamenu { display: none; }
	.mm-chevron { display: none; }
}

.menu-a {
	transition: color 0.8s ease, text-shadow 0.8s ease;
	text-shadow: none;
}
.menu-a:hover {
	color: #AB784B;
	text-shadow: 0 0 0.5px #AB784B, 0 0 0.5px #AB784B;
}
.logo {
	max-width: 300px;
	height: auto;
	width: 100%;
}
.btn1 {
	transition: all 0.8s ease;
}
.btn1-text {
	position: relative;
	display: inline-block;
}
.btn1-text::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0;
	height: 1px;
	background-color: currentColor;
	transition: width 0.4s ease;
}
.btn1:hover .btn1-text::after {
	width: 100%;
}
/*front page*/
.zlata-border {
	border: 1px solid #AB784B;
}
.zlata-border1 {
	border: 1px solid #76614e;
}
.obrazok {
	width: 100%;
	height: auto;
}
.img-1 {
	max-width: 600px;
}

/* Google Rating Badge */
.google-rating-badge {
	display: inline-flex;
	align-items: center;
	


}
.google-rating-score {
	font-size: 15px;
	font-weight: 700;
	color: #222;
}
.google-rating-stars {
	font-size: 15px;
	color: #AB784B;
	letter-spacing: 1px;
}
.google-rating-powered {
	font-size: 12px;
	color: #57534E;
}
.google-rating-logo {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: -0.3px;
}

/*-----KATEGORIE SWIPER-----*/
.swiper-container-kategorie {
	width: 100%;
	overflow: hidden;
}
.swiper-container-kategorie .swiper-wrapper {
	align-items: stretch;
}
.swiper-container-kategorie .swiper-slide {
	height: auto;
}
.kategoria-card {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0px 3px 8px 1px #d9d4c8;
	display: flex;
	flex-direction: column;
	height: 100%;
}
.kategoria-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	padding: 20px;
	box-sizing: border-box;
}
.kategoria-card-body {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
}
.kategoria-card-btn {
	display: inline-flex;
	border: 1px solid #AB784B;
	border-radius: 5px;
	padding: 10px 22px;
	width: fit-content;
	margin-top: auto;
	color: #222;
}
.ikona {
	width: 25px;
	height: 25px;
}
.treti-obrazok {
	position: absolute;
	bottom: 0;
	right: 0px;
	width: 65%;
	height: auto;
	max-width: 300px;
	border-radius: 10px;
}
.druhy {
	max-width: 700px;
}
.check {
	width: 20px;
	height: 20px;
	fill: #AB784B;
}
.check-an {
	transition: all 0.8s ease;

}
.check-an:hover {
	transform: scale(1.1);
}
.info-ikona {
	width: 27px;
	height: 27px;
	fill: #AB784B;
}
/*-
--=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
-  SCROLL ANIMATIONS (sfx-up, sfx-left, sfx-right, sfx-stagger, sfx-pulse)
--=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
*/
.sfx-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}
.sfx-up.is-visible { opacity: 1; transform: translateY(0); }

.sfx-bottom {
    opacity: 0;
    transform: translateY(-40px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}
.sfx-bottom.is-visible { opacity: 1; transform: translateY(0); }

.sfx-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}
.sfx-left.is-visible { opacity: 1; transform: translateX(0); }

.sfx-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}
.sfx-right.is-visible { opacity: 1; transform: translateX(0); }

.sfx-stagger > * {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.sfx-stagger.is-visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.sfx-stagger.is-visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.09s; }
.sfx-stagger.is-visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.18s; }
.sfx-stagger.is-visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.27s; }
.sfx-stagger.is-visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.36s; }
.sfx-stagger.is-visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.45s; }

@keyframes sfx-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(126, 255, 4, 0.55); }
    60%       { box-shadow: 0 0 0 16px rgba(126, 255, 4, 0); }
}
.sfx-pulse { animation: sfx-pulse 2.2s ease infinite; }

/* Section: Preco zvolit + Povedali o nas */
.recenzie-karta {
	background-color: #292927;
	border-radius: 20px;
	padding: 40px;
}
.recenzie-items {
	overflow: hidden;
	max-height: 210px;
}

.ftn5 {
	max-width: 1500px;
}

/* FAQ accordion */
.faq-list {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.faq-item {
	background: #f0ebe3;
	border-radius: 16px;
	overflow: hidden;
}
.faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 24px;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 600;
	color: #6b4c2a;
}
.faq-arrow {
	flex-shrink: 0;
	color: #6b4c2a;
	transition: transform 0.3s ease;
}
.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
}
.faq-answer-inner {
	padding: 0 24px 20px;
	color: #3d2b1a;
	line-height: 1.7;
}
/* SLUZBY PAGE */

/* Hero */
.sluzby-hero-bg {
	position: relative;
	min-height: 90vh;
	background: url('/wp-content/uploads/2026/05/sluzby.webp') center/cover no-repeat;
	display: flex;
	align-items: center;
}
.sluzby-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, rgba(10,8,6,0.82) 0%, rgba(10,8,6,0.55) 55%, rgba(10,8,6,0.15) 100%);
}
.sluzby-hero-content {
	position: relative;
	z-index: 1;
	max-width: 640px;
	padding-top: 120px;
	padding-bottom: 120px;
}
.sluzby-hero-h1 {
	font-size: clamp(48px, 7vw, 88px);
	line-height: 1.05;
	color: #fff;
	margin-bottom: 24px;
}
.sluzby-hero-h1 em {
	font-style: italic;
}
.sluzby-hero-perex {
	color: rgba(255,255,255,0.78);
	line-height: 1.8;
	max-width: 480px;
	margin-bottom: 36px;
}
.sluzby-hero-scroll {
	position: absolute;
	bottom: 36px;
	left: 50%;
	transform: translateX(-50%);
	animation: bounce 2s infinite;
	z-index: 1;
}
@keyframes bounce {
	0%, 100% { transform: translateX(-50%) translateY(0); }
	50%       { transform: translateX(-50%) translateY(8px); }
}
.sluzby-btn-primary {
	display: inline-flex;
	align-items: center;
	background: #AB784B;
	color: #fff;
	padding: 16px 32px;
	border-radius: 8px;
	letter-spacing: 1.5px;
	transition: background 0.3s ease, transform 0.2s ease;
}
.sluzby-btn-primary:hover {
	background: #8f6238;
	transform: translateY(-2px);
}
.sluzby-btn-outline {
	display: inline-flex;
	align-items: center;
	border: 1.5px solid rgba(255,255,255,0.45);
	color: rgba(255,255,255,0.9);
	padding: 16px 32px;
	border-radius: 8px;
	letter-spacing: 1.5px;
	transition: border-color 0.3s ease, color 0.3s ease;
}
.sluzby-btn-outline:hover {
	border-color: #AB784B;
	color: #AB784B;
}

/* Swiper sluzby */
.sluzby-swiper-outer {
	position: relative;
	padding: 0 64px;
}
@media (max-width: 767px) {
	.sluzby-swiper-outer {
		padding: 0 0 56px;
	}
}
.swiper-container-sluzby {
	width: 100%;
	overflow: hidden;
	padding-bottom: 48px !important;
}
.swiper-container-sluzby .swiper-slide {
	height: auto;
}
.swiper-pagination-sluzby {
	bottom: 0 !important;
}
.swiper-pagination-sluzby .swiper-pagination-bullet {
	background: #c9b89e;
	opacity: 1;
	width: 8px;
	height: 8px;
	transition: background 0.3s ease, width 0.3s ease;
	border-radius: 4px;
}
.swiper-pagination-sluzby .swiper-pagination-bullet-active {
	background: #AB784B;
	width: 24px;
}
.swiper-btn-sluzby {
	position: absolute !important;
	top: calc(50% - 24px - 24px) !important; /* -24px kompenzuje pagination priestor */
	width: 48px !important;
	height: 48px !important;
	margin-top: 0 !important;
	background: #fff;
	border-radius: 50%;
	border: 1.5px solid #ede5d8;
	box-shadow: 0 2px 12px rgba(0,0,0,0.08);
	transition: background 0.25s ease, border-color 0.25s ease;
	z-index: 10;
}
.swiper-btn-sluzby.swiper-button-prev { left: 0 !important; }
.swiper-btn-sluzby.swiper-button-next { right: 0 !important; }
.swiper-btn-sluzby:hover {
	background: #AB784B;
	border-color: #AB784B;
}
.swiper-btn-sluzby::after {
	font-size: 16px !important;
	font-weight: 700;
	color: #AB784B;
}
.swiper-btn-sluzby:hover::after {
	color: #fff;
}
.swiper-btn-sluzby.swiper-button-disabled {
	opacity: 0.3;
	pointer-events: none;
}
/* Na mobile: šípky pod swiperom vedľa pagination */
@media (max-width: 767px) {
	.swiper-btn-sluzby {
		position: absolute !important;
		top: auto !important;
		bottom: 0 !important;
	}
	.swiper-btn-sluzby.swiper-button-prev { left: calc(50% - 64px) !important; }
	.swiper-btn-sluzby.swiper-button-next { right: calc(50% - 64px) !important; }
}
.sluzba-moderna-karta {
	position: relative;
	background: #fff;
	border-radius: 20px;
	border: 1.5px solid #ede5d8;
	padding: 40px 36px 36px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	height: 100%;
	box-sizing: border-box;
	text-decoration: none;
	color: inherit;
	transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
	overflow: hidden;
}
.sluzba-moderna-karta:hover {
	background: #FEF9E9;
	border-color: #AB784B;
	box-shadow: 0 8px 28px rgba(171,120,75,0.14);
}
.sluzba-cislo {
	position: absolute;
	top: 24px;
	right: 28px;
	font-size: 72px;
	line-height: 1;
	color: rgba(171,120,75,0.08);
	font-weight: 700;
	pointer-events: none;
	transition: color 0.3s ease;
}
.sluzba-moderna-karta:hover .sluzba-cislo {
	color: rgba(171,120,75,0.14);
}
.sluzba-moderna-ikona {
	width: 54px;
	height: 54px;
	background: #FEF5DC;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background 0.3s ease;
}
.sluzba-moderna-karta:hover .sluzba-moderna-ikona {
	background: #f5e9cc;
}
.sluzba-moderna-ikona svg {
	width: 26px;
	height: 26px;
}
.sluzba-moderna-body {
	flex: 1;
}
.sluzba-moderna-sipka {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1.5px solid #e0d5c5;
	color: #AB784B;
	align-self: flex-start;
	transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.sluzba-moderna-karta:hover .sluzba-moderna-sipka {
	background: #AB784B;
	border-color: #AB784B;
	color: #fff;
	transform: translateX(4px);
}
.sluzba-zoznam {
	display: flex;
	flex-direction: column;
	gap: 7px;
	padding-left: 0;
	list-style: none;
	margin: 0;
}
.sluzba-zoznam li {
	padding-left: 18px;
	position: relative;
	line-height: 1.6;
}
.sluzba-zoznam li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #AB784B;
}

/* CTA banner */
.sluzby-cta-banner {
	position: relative;
	background: url('/wp-content/uploads/2026/05/sluzby.webp') center 70%/cover no-repeat;
	padding: 100px 40px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
}
.sluzby-cta-overlay {
	position: absolute;
	inset: 0;
	background: rgba(10,8,6,0.72);
}
.sluzby-cta-content {
	position: relative;
	z-index: 1;
}
@media (max-width: 767px) {
	.sluzby-hero-bg { min-height: 100svh; }
	.sluzby-hero-content { padding-top: 100px; padding-bottom: 80px; }
	.sluzby-cta-banner { padding: 70px 20px; }
}

/*FOOTER*/
.ig,
.fb {
	width: 40px;
	height: 40px;
	fill: #AB784B;
}

/* ── MOBILE / TABLET MENU ────────────────────────────────── */
.burger-btn {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	flex-shrink: 0;
}
.burger-btn span {
	display: block;
	width: 24px;
	height: 2px;
	background: #57534E;
	border-radius: 2px;
	transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
	transform-origin: center;
}
.burger-btn.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.is-active span:nth-child(2) { opacity: 0; width: 0; }
.burger-btn.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mob-overlay {
	position: fixed;
	inset: 0;
	background: rgba(10,8,6,0.55);
	z-index: 1100;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s ease, visibility 0s linear 0.35s;
	backdrop-filter: blur(3px);
}
.mob-overlay.is-open {
	opacity: 1;
	visibility: visible;
	transition: opacity 0.35s ease, visibility 0s linear 0s;
}

.mob-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: min(400px, 100vw);
	height: 100%;
	height: 100dvh;
	background: linear-gradient(160deg, #1c0f02 0%, #2e1a06 100%);
	z-index: 1200;
	display: flex;
	flex-direction: column;
	transition: right 0.38s cubic-bezier(0.22, 1, 0.36, 1);
	overflow-y: auto;
	overscroll-behavior: contain;
}
.mob-menu.is-open { right: 0; }

.mob-menu-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 22px 28px;
	border-bottom: 1px solid rgba(255,255,255,0.08);
	flex-shrink: 0;
}
.mob-close-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	background: rgba(255,255,255,0.09);
	border: none;
	border-radius: 11px;
	cursor: pointer;
	color: #fff;
	flex-shrink: 0;
	transition: background 0.2s ease;
}
.mob-close-btn:hover { background: rgba(255,255,255,0.16); }

.mob-nav {
	display: flex;
	flex-direction: column;
	padding: 20px 20px;
	gap: 3px;
	flex: 1;
}
.mob-nav-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 13px 16px;
	border-radius: 12px;
	font-family: 'Manrope', sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: rgba(255,255,255,0.82);
	text-decoration: none;
	background: none;
	border: none;
	cursor: pointer;
	width: 100%;
	text-align: left;
	box-sizing: border-box;
	transition: background 0.18s ease, color 0.18s ease;
}
.mob-nav-link:hover { background: rgba(255,255,255,0.07); color: #fff; }
.mob-nav-group { display: flex; flex-direction: column; }
.mob-chevron { transition: transform 0.28s ease; flex-shrink: 0; color: rgba(171,120,75,0.85); }
.mob-nav-trigger.is-open .mob-chevron { transform: rotate(180deg); }

.mob-submenu {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.34s ease;
	display: flex;
	flex-direction: column;
	padding-left: 14px;
	gap: 2px;
}
.mob-submenu.is-open { max-height: 420px; }
.mob-sub-link {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 16px;
	border-radius: 10px;
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	color: rgba(255,255,255,0.6);
	text-decoration: none;
	transition: background 0.18s ease, color 0.18s ease;
}
.mob-sub-link::before {
	content: '';
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #AB784B;
	flex-shrink: 0;
}
.mob-sub-link:hover { background: rgba(255,255,255,0.06); color: #fff; }

.mob-nav-divider {
	height: 1px;
	background: rgba(255,255,255,0.07);
	margin: 8px 16px;
}

.mob-menu-footer {
	padding: 20px 28px 32px;
	border-top: 1px solid rgba(255,255,255,0.08);
	flex-shrink: 0;
}
.mob-cta-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 16px 24px;
	background: #AB784B;
	color: #fff;
	border-radius: 12px;
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	text-decoration: none;
	transition: background 0.22s ease;
	box-sizing: border-box;
}
.mob-cta-btn:hover { background: #c48f5e; }

.header-burger-wrap { display: none; }

@media (max-width: 1024px) {
	#header-inner {
		position: relative;
		justify-content: space-between !important;
	}
	#header-nav { display: none !important; }
	.header-burger-wrap {
		display: flex;
		align-items: center;
		flex-shrink: 0;
		z-index: 2;
	}
	#header-logo-col {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		width: auto !important;
		z-index: 1;
		pointer-events: auto;
	}
	#header-logo-col .logo { max-width: 155px; }
	#header-cta-area {
		width: auto !important;
		flex-shrink: 0;
		z-index: 2;
		
		justify-content: flex-end;
		align-items: center;
		padding: 0 !important;
	}
	#header-cta-area .btn1 {
		padding: 10px 14px !important;
		font-size: 11px !important;
		margin: 0 !important;
		letter-spacing: 0.8px !important;
	}
}