:root {
	--primary: #2f2f2f;
	--secondary: #2f2f2f;
	--sand: #e7ddc8;
	--olive: #2f2f2f;
	--offwhite: #fcf7f0;
}

#wrapper {
	position: relative;
	overflow-x: hidden;
}

div#mobilemenu {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	z-index: 1111;
	width: 100%;
	max-width: 400px;
	background: var(--primary);
	padding: 40px 50px;
	box-shadow: 0 0 100px black;
	display: flex;
	flex-direction: column;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transform: translateX(calc(-100% - 100px));
	transition: all 0.3s ease-out;
	overflow-y: auto;
}
body.mobile-active div#mobilemenu {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}
body.mobile-active {
	overflow: hidden;
}

div#mobilemenu .hamburger-box {
	position: absolute;
	top: 20px;
	right: 20px;
}

div#mobilemenu .mobileheader {
	margin-bottom: 50px;
}

div#mobilemenu img.brand {
	max-width: 220px;
	width: 100%;
	height: auto;
}

div#mobilemenu nav {
	width: 100%;
	margin-bottom: 50px;
}
div#mobilemenu nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
div#mobilemenu nav ul li a {
	color: var(--offwhite);
	text-decoration: none;
	padding: 10px 0;
	width: 100%;
	display: flex;
	align-items: center;
}

div#mobilemenu nav > ul > li {
	border-bottom: 1px solid gray;
	width: 100%;
	display: flex;
	align-items: flex-start;
	position: relative;
	flex-direction: column;
}

/* Skjul sub-menu som standard */
div#mobilemenu .sub-menu {
	overflow: hidden;
	max-height: 0;
	transition: all 0.3s ease-out;
	background: var(--olive);
	width: 100%;
	border-radius: 10px;
	padding: 0 10px;
	/*margin-bottom: 10px;*/
}
div#mobilemenu .sub-menu a {
	padding-left: 10px;
	padding-right: 10px;
	font-size: 12px;
}

/* Style pil */
div#mobilemenu .submenu-toggle {
	display: inline-block;
	cursor: pointer;
	transition: transform 0.3s;
	position: absolute;
	right: 0;
	top: 9px;
}
div#mobilemenu .submenu-toggle svg {
	fill: var(--sand);
}

/* Åben pil */
div#mobilemenu .menu-item.open > .submenu-toggle {
	transform: rotate(180deg);
}

/* Åben sub-menu */
div#mobilemenu .menu-item.open > .sub-menu {
	max-height: 500px;
	padding: 10px;
	margin-bottom: 10px;
}

div#mobilemenu .mobilefooter {
	width: 100%;
	margin-top: auto;
}
/*div#mobilemenu .mobilefooter .col-follow h4 {
font-size: 14px;
}*/


.hamburger-box {
	position: relative;
	width: 30px;
	height: 30px;
	cursor: pointer;
	display: none;
}
.hamburger-box .hamburger-inner {
	transition-timing-function: cubic-bezier(.55,.055,.675,.19);
	transition-duration: 75ms;
}
.hamburger-inner {
	top: 50%;
	display: block;
	margin-top: -2px;
}
.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
	position: relative;
	width: 30px;
	height: 2px;
	transition-timing-function: ease;
	transition-duration: .15s;
	transition-property: transform;
	border-radius: 2px;
	background-color: #fff;
}
.hamburger-inner:after,
.hamburger-inner:before {
	display: block;
	content: "";
}
.hamburger-inner:before {
	top: -10px;
	transition: top 75ms ease .12s, opacity 75ms ease;
}
.hamburger-inner:after {
	bottom: -8px;
	transition: bottom 75ms ease .12s, transform 75ms cubic-bezier(.55,.055,.675,.19);
}
body.mobile-active .hamburger-box .hamburger-inner {
	transition-delay: .12s;
	transition-timing-function: cubic-bezier(.215,.61,.355,1);
	transform: rotate(45deg);
}
body.mobile-active .hamburger-box .hamburger-inner:before {
	top: 0;
	transition: top 75ms ease, opacity 75ms ease .12s;
	opacity: 0;
}
body.mobile-active .hamburger-box .hamburger-inner:after {
	bottom: 2px;
	transition: bottom 75ms ease, transform 75ms cubic-bezier(.215,.61,.355,1) .12s;
	transform: rotate(-90deg);
}


.whitebox.parent-category {
	padding: 0;
	position: relative;
	overflow: hidden;
	aspect-ratio: 1/1;
	display: flex;
	align-items: center;
	justify-content: center;
}
.whitebox.parent-category:before {
	content: '';
	position: absolute;
	z-index: 1;
	inset: 0;
	background: var(--primary);
	opacity: .5;
	transition: all .6s ease-in-out;
}
.whitebox.parent-category:hover:before {
	opacity: .7;
}
.whitebox.parent-category .text {
	position: relative;
	z-index: 2;
	text-align: center;
	color: var(--offwhite);
}
.whitebox.parent-category .text h5 {
	color: var(--offwhite);
	text-transform: unset;
}
.whitebox.parent-category .text p {
	opacity: 0;
	visibility: hidden;
	transition: all .6s ease-in-out;
}
.whitebox.parent-category:hover .text p {
	opacity: 1;
	visibility: visible;
}
.whitebox.parent-category img {
	position: absolute;
	inset: 0;
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 100%;
}

form.was-validated .form-control:invalid {
	border-color: #dc3545;
}
form.was-validated .form-control:valid {
	border-color: #198754;
}


#priser .container > .whitebox:first-child {
	margin-top: -160px;
}
#priser .whitebox {
	max-width: 950px;
	width: 100%;
}
#priser .whitebox + .whitebox {
	margin-top: 40px;
}

.tabel-wrapper {
	display: flex;
	flex-direction: column;
}
.tabel-row {
	display: flex;
	border-bottom: 1px solid #ddd;
	padding: 0.5em 0;
}
.tabel-row > div {
	flex: 1;
}
.tabel-row.header {
	font-weight: bold;
}
.tabel-wrapper > .tabel-row > div:nth-child(2),
.tabel-wrapper > .tabel-row > div:nth-child(3) {
	text-align: right;
}
.tabel-wrapper > .tabel-row > div:nth-child(2) {
	max-width: 100px;
}
.tabel-wrapper > .tabel-row > div:nth-child(3) {
	max-width: 170px;
}
.tabel-wrapper a {
	text-decoration: unset !important;
}


.about img.ivana {
	position: absolute;
	bottom: -30px;
	left: unset;
	height: 120%;
	width: 33%;
	padding: 0;
	object-fit: contain;
	margin-left: -1vw;
}
@media only screen and (max-width: 991px) {
	.about img.ivana {
		left: -60px !important;
		height: auto;
		width: 180px;
		object-fit: unset;
		margin-left: 0;
		aspect-ratio: unset;
		max-height: unset;
	}
	.about .pt-120.pb-120 {
		padding-left: 160px;
	}
}
@media only screen and (max-width: 520px) {
	.about img.ivana {
		left: -110px !important;
		width: 240px;
		bottom: -70px;
	}
}
@media only screen and (max-width: 400px) {
	.about img.ivana {
		left: -120px !important;
		width: 260px;
		bottom: -20px;
	}
}
section#about-4 .pt-120 {
	padding-top: 6vw;
}
section#about-4 .pb-120 {
	padding-bottom: 6vw;
}


.pt-120 {
	padding-top: 120px;
}
.pb-120 {
	padding-bottom: 120px;
}

body {
	background: var(--offwhite);
	color: var(--primary);
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	color: var(--olive);
	margin-bottom: 1em;
}

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

a {
	color: var(--primary);
}


#anmeldelser {
	overflow: hidden;
	position: relative;
	padding: 80px 0 120px;
	--swiper-navigation-size: 30px;
	--swiper-theme-color: var(--primary);
	background: var(--primary);
	color: var(--offwhite);

	background-attachment: fixed;
	background-size: cover;

	background: #e2b755;
}
#anmeldelser:before {
	background: var(--primary);
	content: '';
	position: absolute;
	inset: 0;
	opacity: .8;
}

#anmeldelser .swiper-wrapper {
	display: flex;
	align-items: center;
}
#anmeldelser .swiper-button-next,
#anmeldelser .swiper-button-prev {
	color: var(--offwhite);
}
#anmeldelser .swiper-button-next {
	right: 40px;
}
#anmeldelser .swiper-button-prev {
	left: 40px;
}
#anmeldelser .swiper-pagination {
	bottom: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}
#anmeldelser .swiper-pagination .swiper-pagination-bullet {
	margin: 0 8px;
}
#anmeldelser .swiper-pagination-bullet {
	opacity: 1;
	background: var(--sand);
}
#anmeldelser .swiper-pagination-bullet-active {
	background: var(--sand);
	border: 2px solid var(--sand);
	width: 11px;
	height: 11px;
}
#anmeldelser h2 {
	margin-bottom: 30px;
	position: relative;
}
.anmeldelse {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
	padding: 0 70px;
}
.anmeldelse svg {
	width: 40px;
	height: 40px;
	margin-bottom: 30px;
}
.anmeldelse h5 {
	margin: 0;
	margin-top: 50px;
	text-transform: capitalize;
	color: var(--sand);
}


#selling-points ul {
	display: flex;
	flex-direction: column;
	margin: 0;
	row-gap: 20px;
	max-width: 400px;
	padding-left: 17px;
}
#selling-points h2 {
	position: absolute;
	display: inline-flex;
	margin: 0;
	text-align: center;
	width: fit-content;
	background: var(--offwhite);
	padding: 20px 40px;
	border-radius: 10px;
	transform: translateX(-40%);
	max-width: 500px;
	text-transform: unset;
}
#selling-points img {
	border-radius: 10px;
	height: calc(100% + 50px);
	box-shadow: 0 20px 60px rgb(0 0 0 / 10%);
}


#prices {
	background: #dcd8d0;
}
#prices h3 {
	text-transform: unset;
}
#prices .label {
	position: absolute;
	top: 0;
	right: 0;
	width: 120px;
	height: 120px;
	overflow: hidden;
}
#prices .label > span {
	background: var(--olive);
	color: var(--offwhite);
	text-align: center;
	width: 300px;
	display: block;
	transform: rotate(45deg);
	position: absolute;
	right: -110px;
	top: 30px;
	text-transform: uppercase;
	font-family: 'Poppins', sans-serif;
	font-size: 12px;
	padding: 5px 0;
}
#prices .whitebox:hover {
	transform: translateY(-20px);
}


#beliggenhed {
	background: var(--sand);
}
#beliggenhed .row > div:first-child .whitebox {
	border-radius: 10px 0 0 10px;
}
#beliggenhed iframe {
	border-radius: 0 10px 10px 0;
	box-shadow: 0 20px 60px rgb(0 0 0 / 10%);
}

body {
	font-family: "Lora", serif;
}
h1, h2, h3, h4, h5, h6 {
	font-family: "Playfair Display", serif;
	/*text-transform: uppercase;*/
}
h2.bigger {
	font-size: 4rem;
	text-align: center;
	/*margin-bottom: 50px;*/
}
p {
	margin: 0;
}
p + h2,
p + h3,
p + h4,
p + p {
	margin-top: 1em;
}
section {
	padding: 6vw 0;
}

.goldtext {
	/*background: linear-gradient(76deg, #eec65f 0%, #da9847 23%, #e2b755 38%, #e2b755 52%, #e2b755 54%, #dd9947 69%, #e2b755 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
	display: inline-block;*/
	color: var(--primary);
	color: #e2b755;
}

.whitebox {
	background: var(--offwhite);
	padding: 60px;
	height: 100%;
	border-radius: 10px;
	box-shadow: 0 20px 60px rgb(0 0 0 / 10%);
	position: relative;
	transition: all .3s;
}
.whitebox h2 {
	font-size: 2.3rem;
	margin-bottom: 1rem;
}

.container {
	max-width: 1500px !important;
	padding-left: 1.5rem !important;
	padding-right: 1.5rem !important;
}
.container-fluid {
	padding-left: 1.5rem !important;
	padding-right: 1.5rem !important;
}

#pagetitle {
	padding-top: calc(87.5px + 100px);
	padding-bottom: 100px;
	text-align: center;
	background-color: var(--primary);
	background-image: url(../../../../uploads/shje-kosmetolog-3-min.jpeg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	color: var(--offwhite);
}
#pagetitle:before {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--primary);
	opacity: .8;
}
#pagetitle .container {
	position: relative;
}

#header {
	position: fixed;
	z-index: 999;
	color: var(--sand);
	top: 0;
	left: 0;
	width: 100%;
	padding: 20px 0;
}
#header:before,
#header:after {
	content: '';
	position: absolute;
	inset: 0;
	transition: .3s;
}
#header:before {
	background: var(--primary);
}

#header:not(.scrolled):before,
#header:not(.scrolled):after {
	opacity: 0;
}

#header > * {
	position: relative;
	z-index: 1;
}
#header .container,
#header .container-fluid {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#header div .logo {
	display: block;
	max-width: 210px;
	width: 100%;
}
#header nav {
	flex: 1;
	display: flex;
	align-items: center;
}
#header nav#rightnav {
	justify-content: flex-end;
}
#header .btn {
	margin-left: 30px;
}
#header nav ul {
	display: flex;
	align-items: center;
	list-style: none;
	column-gap: 30px;
	margin: 0;
	padding: 0;
}
#header nav ul a {
	color: var(--sand);
	text-decoration: none;
	font-family: 'Poppins', sans-serif;
	text-transform: uppercase;
	font-size: 13px;
	position: relative;
	padding: 4px 7px;
	transition: .3s;
}
#header nav > ul > li > a:hover,
#header nav > ul > li.current-menu-item > a,
#header nav > ul > li.current-menu-parent > a {
	color: var(--primary);
}
#header nav > ul > li > a:before {
	content: "";
	transition: .3s;
	display: block;
	position: absolute;
	inset: 0;
	z-index: -1;
	background-color: var(--sand);
	border-radius: 4px;
}
#header nav > ul > li > a:before {
	bottom: 100%;
	transform: scale(1);
}
#header nav > ul > li > a:hover:before,
#header nav > ul > li.current-menu-item > a:before,
#header nav > ul > li.current-menu-parent > a:before {
	bottom: 0;
}

#header nav ul li ul.sub-menu {
	position: absolute;
	display: flex;
	flex-direction: column;
	background: var(--olive);
	align-items: flex-start;
	padding: 20px;
	opacity: 0;
	transition: .3s;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(10px);
	border-radius: 4px;
}
#header nav ul li:hover ul.sub-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: unset;
	transform: translateY(0px);
}
#header nav ul.sub-menu > li.current-menu-item > a {
	font-weight: 700;
}

.btn {
	font-family: "Poppins", sans-serif;
	border: 0;
	border-radius: 5px;
	text-transform: uppercase;
	font-weight: 500;
	font-size: 13px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 26px;
}
.btn.btn-primary {
	background: var(--primary);
	color: var(--primary);

	background: #e2b755;
	position: relative;
	overflow: hidden;
}
/*.btn.btn-primary:before {
content: '';
position: absolute;
inset: 0;
background: black;
background-size: cover;
opacity: .3;
}*/
.btn.btn-secondary {
	background: var(--secondary);
	color: var(--offwhite);
}
.btn > span {
	display: flex;
	align-items: center;
	position: relative;
}
.btn > span > span {
	white-space: break-spaces;
}
.btn.btn-primary svg,
.btn.btn-secondary svg {
	width: 19px;
	height: 19px;
	fill: var(--primary);
	margin-right: 10px;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
	color: var(--primary);
	background-color: #b18f42;
	border-color: #b18f42;
}

#footer {
	background: var(--primary);
	color: var(--offwhite);
	position: relative;
}

#footer > * {
	position: relative;
}
#footer > .container {
	/*padding-left: 5% !important;
	padding-right: 5% !important;*/
	padding-top: 110px;
	padding-bottom: 100px;
}
#footer h4 {
	font-size: 1.2rem;
	margin-bottom: 20px;
}
#footer a {
	color: var(--sand);
	text-decoration: none;
}
#footer h3 {
	font-size: 20px;
	margin-bottom: 20px;
	color: var(--sand);
}
#footer .brand {
	display: inline-block;
	max-width: 180px;
}
#footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
#footer ul li svg {
	fill: var(--sand);
}
#footer ul:not(.socials) li,
#footer ul:not(.socials) li a {
	display: flex;
	align-items: center;
}
#footer ul.menu li svg {
	width: 10px;
	height: 10px;
	margin-right: 3px;
}
#footer ul.kontakt li svg {
	width: 20px;
	height: 20px;
	margin-right: 10px;
}
#footer ul.menu li,
#footer ul.kontakt li {
	margin: 10px 0;
}
#footer ul.socials li {
	margin-right: 6px;
}
#footer ul.socials li svg {
	width: 30px;
	height: 30px;
	fill: #ffffff;
}
#footer p {
	margin: 0;
}
#footer p.d-flex.align-items-center {
	white-space: break-spaces;
}
#footer a.some-icon,
a.some-icon {
	width: 32px;
	height: 32px;
	background: var(--sand);
	border-radius: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 8px;
}
#footer a.some-icon:last-child,
a.some-icon:last-child {
	margin-right: 0;
}
#footer a.some-icon svg,
a.some-icon svg {
	width: 23px;
	height: 23px;
}

#footer svg.footericon {
	fill: var(--offwhite);
	width: 20px;
	height: 20px;
	margin-right: 5px;
}

#copyright {
	padding: 14px 0;
	font-size: 13px;
	background: rgb(0 0 0 / 20%);
	color: var(--offwhite);
}
#copyright p {
	display: flex;
	align-items: center;
	justify-content: center;
	white-space: break-spaces;
}
#copyright .sep {
	margin: 0 1em;
	border-right: 1px solid var(--sand);
	height: 20px;
	display: inline-block;
	opacity: .3;
}

#hero {
	text-align: center;
	background-color: #000000;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 650px;
	max-height: 100dvh;
	position: relative;
	padding: calc(6vw + 100px) 0 6vw;
}
#hero:before {
	content: '';
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000000;
	opacity: 0.5;
}
#hero .container {
	position: relative;
	z-index: 1;
}

#hero .container img {
	position: absolute;
	max-width: 260px;
	left: 0;
	/*bottom: 0;*/
}
@media only screen and (max-width: 1150px) {
	#hero .container img {
		max-width: 160px;
		left: 10px;
		bottom: -160px;
	}
}
@media only screen and (max-width: 480px) {
    #hero .container img {
        max-width: 110px;
        left: 10px;
        bottom: -130px;
    }
}

#hero > video,
#hero > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	/*opacity: .2;*/
}
#hero .container {
	position: relative;
}
#hero h1 {
	font-size: 50px;
	margin-bottom: 10px;
}
#hero h1,
#hero h2 {
	color: var(--offwhite);
}
#hero p {
	font-size: 22px;
	margin-top: 40px;
}
#hero p + p {
	margin-top: 10px;
}


#about {
	padding: 110px 0;
}
#about > .container {
	max-width: 1100px !important;
}
#about > .container > .row {
	position: relative;
	align-items: center;
}
#about > .container > .row > div:not(.imageContainer) {
	position: relative;
	z-index: 1;
	margin-top: 60px;
}
#about > .container .imageContainer {
	position: absolute;
	max-width: 50%;
	right: 0;
	pointer-events: none;
	border-radius: 10px;
	height: calc(100% + 50px);
	padding: 0;
	overflow: hidden;
	box-shadow: 0 20px 60px rgb(0 0 0 / 10%);
}
#about > .container .imageContainer > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#about > .container > .row > img {
	position: absolute;
	max-width: 50%;
	right: 0;
	object-fit: cover;
	pointer-events: none;
	border-radius: 10px;
	height: calc(100% + 50px);
	padding: 0;
	box-shadow: 0 20px 60px rgb(0 0 0 / 10%);
}


.marble-light-bg {
	background-image: url(https://shjecph.dk/2025/wp-content/uploads/marble-scaled.jpg);
	background-image: url(https://shjecph.dk/2025/wp-content/uploads/sand_marble.jpg);
	background-size: cover;
	background-position: center;
}

.home section#about-2 h2:before {
	height: 100%;
	width: 5px;
	position: absolute;
	content: '';
	left: -30px;
	background: linear-gradient(76deg, #eec65f 0%, #a76f2a 23%, #e2b755 38%, #e2b755 52%, #e2b755 54%, #8f5d21 69%, #e2b755 100%);
}

.about h2 {
	font-size: calc(1.6rem + .9vw);
	margin-bottom: 2rem;
	position: relative;
}
.about .row > div {
	position: relative;
}
.about img,
.about video {
	position: absolute;
	height: 100%;
	width: 90%;
	object-fit: cover;
	left: 0.75rem;
	border-radius: 30px;
}
.home .about img {
	width: 80%;
}
.about.about-right img,
.about.about-right video {
	left: unset;
	right: 0.75rem;
}



#banner {
	background: url(../../../../uploads/shje-kosmetolog-7-min.jpg);
	padding: 120px 0;
	min-height: 500px;
	background-attachment: fixed;
	background-size: cover;
	color: var(--offwhite);
	position: relative;
	display: flex;
	align-items: center;
}
#banner:before {
	background: rgb(0 0 0 / 40%);
	content: '';
	position: absolute;
	inset: 0;
}
#banner > div {
	position: relative;
}
#banner h2 {
	margin-bottom: 3rem;
	color: var(--offwhite);
}

#citat {
	position: relative;
	overflow: hidden;
}

#quote {
	background-color: var(--primary);
	background-image: url('https://shjecph.dk/2025/wp-content/uploads/shje-kosmetolog-7-min.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	position: relative;
	color: var(--offwhite);
}
#quote:before {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--primary);
	opacity: .8;
}
#quote .h1 {
	font-size: 3.5rem;
	color: var(--sand);
	margin-bottom: 2rem;
	text-transform: unset;
}
#quote .container {
	position: relative;
}

.page-template-default section#main {
	margin-top: -50px;
}
#information .container {
	position: relative;
	z-index: 1;
	margin-top: -50px;
	margin-bottom: -50px;
}
.page-template-page-contact #quote {
	padding-top: 170px;
	padding-bottom: 120px;
}



/* === PRISLISTE - SHJË CPH === */
#prisliste {
  background-color: #f8f4ed;
  color: #4d4030;
}

#prisliste h1, 
#prisliste h2, 
#prisliste h3 {
  font-family: "Playfair Display", serif;
}

/* --- Sektionstitler --- */
.price-block h2 {
  color: #6b5b43;
  border-bottom: 2px solid #e6dfd2;
  padding-bottom: 0.3rem;
}

.price-block h3 {
  color: #b99656;
  font-weight: 600;
  text-transform: capitalize;
}

/* --- Tables --- */
#prisliste .price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

#prisliste .price-table thead {
  background-color: #f3eadd;
  color: #6b5b43;
  font-weight: 600;
  text-transform: capitalize;
}

/* --- Cellejustering og spacing --- */
#prisliste .price-table th,
#prisliste .price-table td {
  padding: 0.75rem 1.25rem;
  vertical-align: middle;
  border-top: 1px solid #eae4d9;
}

#prisliste .price-table tbody tr:first-child td {
  border-top: none;
}

/* Første kolonne venstrejusteret, resten højre */
#prisliste .price-table th:first-child,
#prisliste .price-table td:first-child {
  text-align: left;
  width: 50%;
}

#prisliste .price-table th:not(:first-child),
#prisliste .price-table td:not(:first-child) {
  text-align: right;
}

/* --- Ens kolonnebredder (pris og note) --- */
#prisliste .price-table th.text-end,
#prisliste .price-table td.text-end {
  width: 8rem; /* fast bredde for kolonner */
  white-space: nowrap;
}

/* --- Rækker --- */
#prisliste .price-table tbody tr:nth-child(even) {
  background-color: #faf7f2;
}

#prisliste .price-table tbody tr:hover {
  background-color: #f1ebe3;
}

/* --- Tomme celler (streg) --- */
#prisliste .price-table td .text-muted {
  color: #c0b6a4 !important;
}

/* --- Responsivt scroll (best practice) --- */
#prisliste .table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* --- Klikbar tabel --- */
#prisliste .price-table-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/*#prisliste .price-table-link:hover .price-table {
  transform: scale(1.01);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}*/

/* --- Noter og små tekster --- */
#prisliste .price-table .small.text-muted {
  color: #8c7b63 !important;
}

/* --- Ekstra behandlinger --- */
#prisliste .price-table + h3 {
  margin-top: 2rem;
}

@media (max-width: 768px) {
  #prisliste .price-table th,
  #prisliste .price-table td {
    padding: 0.6rem 0.8rem;
  }
}




/* ===== Behandlinger Arkiv ===== */
@media (min-width: 992px) {
  .col-lg-20 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

.behandling-card {
  text-decoration: none;
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;
}

.behandling-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 10px;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.85);
}

/* Tonet overlay med let brun nuance */
.behandling-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(107, 91, 67, 0.45); /* semitransparent brun */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.4s ease;
}

/* Titel i midten */
.behandling-title {
  font-weight: 600;
  color: #fff;
  font-size: 1.25rem;
  text-align: center;
  padding: 0 1rem;
  z-index: 2;
  transition: color 0.4s ease;
	margin: 0;
}

/* Hover-effekt: smooth zoom og gylden tone */
.behandling-card:hover .behandling-image {
  transform: scale(1.08);
  filter: brightness(1);
}

.behandling-card:hover .behandling-overlay {
  background-color: rgba(185, 150, 86, 0.45); /* gylden tone ved hover */
}

.behandling-card:hover .behandling-title {
  color: #fffbea;
}

/* Små justeringer */
.bg-light {
  background-color: #f8f4ed !important;
}

@media (max-width: 576px) {
  .behandling-title {
    font-size: 1rem;
  }
}



/* BLOG PAGINATION */
/* ===== Pagination Style (Shjë CPH tema) ===== */
.navigation.pagination {
	display: flex;
	justify-content: center;
	margin-top: 2rem;
	font-family: "Playfair Display", serif; /* matcher Shjë's elegante look */
}

.navigation .nav-links {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	align-items: center;
}

/* Grundlæggende knapper */
.nav-links a.page-numbers,
.nav-links span.page-numbers {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	font-weight: 500;
	text-decoration: none;
	border: 1px solid #c7bda8;
	color: #6b5b43;
	background-color: #f8f4ed;
	transition: all 0.25s ease;
}

/* Hover-effekt */
.nav-links a.page-numbers:hover {
	background-color: #b99656;
	border-color: #b99656;
	color: #fff;
}

.nav-links a.page-numbers *,
.nav-links span.page-numbers * {
	background: transparent;
	padding: unset;
	border: unset;
	color: unset;
	font-size: unset;
	padding-bottom: 5px;
}

/* Aktiv side */
.nav-links .current {
	background-color: #6b5b43 !important;
	color: #fff !important;
	border-color: #6b5b43 !important;
	cursor: default;
}

/* Forrige / Næste knapper */
.nav-links .prev.page-numbers,
.nav-links .next.page-numbers {
	font-weight: 600;
	padding: 0 14px;
	height: 42px;
	border-radius: 21px;
	border: 1px solid #c7bda8;
	background-color: #f8f4ed;
	color: #6b5b43;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	padding-bottom: 3px;
}

.nav-links .prev.page-numbers:hover,
.nav-links .next.page-numbers:hover {
	background-color: #b99656;
	color: #fff;
	border-color: #b99656;
}

/* Fjern evt. blå farve på tal */
.nav-links a.page-numbers,
.nav-links .current span {
	color: inherit;
}

/* Responsiv tilpasning */
@media (max-width: 480px) {
	.nav-links a.page-numbers,
	.nav-links span.page-numbers {
		width: 36px;
		height: 36px;
		font-size: 14px;
	}

	.nav-links .prev.page-numbers,
	.nav-links .next.page-numbers {
		padding: 0 10px;
		font-size: 14px;
	}
}

/* BLOG PAGINATION END */


@media screen and (max-width: 2110px) {
	#footer .container-fluid {
		padding-top: 90px;
		padding-bottom: 60px;
	}
	#footer .col-products {
		flex: 1 0 100%;
		text-align: center;
		order: 1;
		margin-top: 80px;
	}
	#footer .col-products h4 {
		display: none;
	}
}
@media screen and (max-width: 1690px) {
	/*#footer .col-products {
	order: unset;
}
	#footer .col-follow {
	flex: 1 0 100%;
	text-align: center;
	margin-top: 50px;
}*/
}
@media screen and (max-width: 1340px) {
	ul#leftmenu, 
	ul#rightmenu {
		display: none !important;
	}
	.hamburger-box {
		display: inline-block;
	}
	#header .btn {
		margin-left: 0px;
	}


	footer#footer .row > div:first-child {
		flex: 1 0 100%;
		text-align: center;
	}
	#footer .brand {
		max-width: 220px;
		margin-bottom: 50px;
	}
	#footer .container-fluid {
		padding-top: 60px;
		padding-bottom: 60px;
	}
}


@media screen and (max-width: 991px) {
	body {
		font-size: 13px;
	}
	.h2, h2 {
		font-size: calc(1.1rem + .9vw);
	}
	.h3, h3 {
		font-size: calc(1.1rem + .6vw);
	}

	/*section {
	padding: 40px 0;
}*/

	.about img, .about video {
		position: relative;
		height: auto;
		max-height: 300px;
		width: 100%;
		border-radius: 10px;
		margin-bottom: 20px;
		left: unset !important;
		right: unset !important;
		aspect-ratio: 4/3;
	}

	.whitebox .h2,
	.whitebox h2,
	.about h2,
	.h2, h2 {
		font-size: calc(1.1rem + .9vw);
	}
	.about h2 {
		margin-bottom: 1em;
	}
	#banner h2 {
		margin-bottom: 1rem;
	}
	h2.bigger {
		font-size: calc(1.4rem + .9vw);
	}

	#footer .brand {
		max-width: 170px;
		margin-bottom: 0;
	}

	.whitebox {
		padding: 40px;
	}

	.home .about img {
		width: 100%;
	}

	#beliggenhed .row > div:first-child .whitebox {
		border-radius: 10px 10px 0 0;
	}
	#beliggenhed iframe {
		border-radius: 0 0 10px 10px;
	}

	#footer p + p {
		margin-top: .5rem;
	}
	#footer svg.footericon {
		width: 16px;
		height: 16px;
	}

	#quote .h1 {
		font-size: 4vw;
		margin-bottom: 3vw;
	}

	#selling-points h2 {
		transform: unset;
		bottom: 50px;
	}
	#selling-points img {
		max-height: 300px;
		aspect-ratio: 4 / 3;
		object-fit: cover;
	}

}
@media screen and (max-width: 768px) {
	#header div .logo {
		max-width: 150px;
	}
	.btn {
		font-size: 12px;
		padding: 10px 18px;
	}

	#pagetitle {
		padding-top: calc(79px + 20px);
		padding-bottom: 40px;
	}
	.page-template-page-contact #pagetitle {
		padding-bottom: 60px;
	}
	section {
		padding: 40px 0;
	}
	#about {
		padding: 40px 0;
	}
	#anmeldelser {
		padding: 40px 0 80px;
	}
	#anmeldelser h2 {
		margin-bottom: 10px;
	}
	.anmeldelse h5 {
		margin-top: 20px;
	}
	#banner {
		padding: 40px 0;
		min-height: 300px;
	}
	.pb-120 {
		padding-bottom: 40px;
	}
	.pt-120 {
		padding-top: 40px;
	}

	#about > .container > .row > div:not(.imageContainer) {
		margin-top: 50%;
		padding-right: 50px;
	}
	#about > .container .imageContainer,
	#about > .container > .row > img {
		max-width: 80%;
		height: calc(75% + 0px);
		top: 0;
	}

	#priser .container > .whitebox:first-child {
		margin-top: -60px;
	}
	.page-template-default section#main {
		margin-top: -20px;
	}
	#information {
		padding-bottom: 40px !important;
	}
	#information .container {
		margin-top: -20px;
		margin-bottom: 0px;
	}
	.page-template-page-contact #quote {
		padding: 40px 0;
	}

	#hero h1 {
		font-size: 40px;
		margin-bottom: 36px;
	}
	#hero p {
		font-size: 15px;
	}

	#footer img {
		max-width: 140px;
	}
	#footer {
		font-size: 13px;
	}
	#footer h3 {
		font-size: 17px;
	}
	#copyright {
		font-size: 11px;
	}

	.whitebox.parent-category .text p {
		opacity: 1;
		visibility: visible;
	}

	#anmeldelser {
		--swiper-navigation-size: 16px;
	}
	.anmeldelse {
		padding: 0 30px;
	}
	#anmeldelser .swiper-button-prev {
		left: 1.5rem;
	}
	#anmeldelser .swiper-button-next {
		right: 1.5rem;
	}

	#header.scrolled {
		box-shadow: 0 0 20px rgb(0 0 0 / 80%);
	}

}
@media screen and (max-width: 600px) {
	#copyright p {
		display: block;
	}
	#copyright .sep {
		display: block;
		width: 100%;
		height: 0px;
		border-right: none;
		margin: 5px 0;
	}

	.tabel-wrapper > .tabel-row > div:nth-child(2) {
		max-width: 70px;
	}
	.tabel-wrapper > .tabel-row > div:nth-child(3) {
		max-width: 80px;
	}
}
@media screen and (max-width: 512px) {
	#header .container > div:first-child {
		min-width: 80px;
	}

	.btn {
		font-size: 11px;
		padding: 10px 20px;
	}
	#header .btn > span > span {
		display: none;
	}

	.btn.btn-primary svg, .btn.btn-secondary svg {
		width: 16px;
		height: 16px;
		margin-right: 5px;
	}
}
@media screen and (max-width: 450px) {
	#header .btn {
		font-size: 11px;
		padding: 7px 12px;
	}
}