@font-face {
  font-family: 'Noto Serif';
  src: url('NotoSerif-Medium.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Mulish';
  src: url('Mulish-Latin.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
}

*, *::before, *::after {
  box-sizing: border-box;
}

:root {
	--main-color: #467B5D;
}

body {
	font-family: "Mulish", sans-serif;
 	font-optical-sizing: auto;
	font-style: normal;
	font-style: normal;
}

main {
	min-height: calc(100vh - 150px);
}

h1, h2, h3 {
	font-family: "Noto Serif", serif;
	font-style: normal;
}

p {
	font-size: 	18px;
	margin: 14px 0px;
}

a {
	color: black;
}

.content-wrapper {
	max-width: 1250px;
	margin: auto;
	padding: 0px 5%;
	
}

.content-wrapper-wide {
	max-width: 1450px;
	margin: 0px auto;
	padding: 0px 5%;
	height: 100%;
}

header {
  z-index: 1000;
  height: 150px;
  padding: 5px 0px;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #e5e5e5;
  background-color: white;
}

.header-fixed {
  left: 0;
  right: 0;
  top: 0;
  height: 150px;
  padding: 5px 0px;
  position: fixed;
  transform: translateY(-100%);
  background-color: white;
  z-index: 2000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-fixed.visible {
  transform: translateY(0);
}

.logo-container img {
	height: 115px;
	width: auto;
}

header .content-wrapper-wide, .header-fixed .content-wrapper-wide {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

nav > ul {
	display: flex;
	gap: 40px;
	font-weight: 500;
	margin: 0px;
}

header nav a, .header-fixed nav a {
	font-size: 17px;
	font-weight: 500;
}

header nav a:hover, .header-fixed nav a:hover {
	text-decoration: underline 3px solid #467B5D;
	text-underline-offset: 6px; 
}

.basket-icon svg {
	height: 100%;
	color: var(--main-color);
}

.basket-icon-wrap {
	position: relative;
	display: inline-flex;
	margin-top: -7px;
}

@keyframes badge-pop {
	0%   { transform: scale(0.5); }
	70%  { transform: scale(1.2); }
	100% { transform: scale(1); }
}

.basket-badge {
	position: absolute;
	top: -8px;
	right: -12px;
	background: var(--main-color);
	color: white;
	font-size: 11px;
	font-weight: 700;
	width: 21px;
	height: 21px;
	border-radius: 50%;
	border: 2px solid white;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 21px;
	text-align: center;
}

.basket-badge--pop {
	animation: badge-pop 0.3s ease-out;
}

.basket-icon-count {
	font-size: 14px;
	color: var(--main-color);
	font-weight: 700;
}

.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 100;
}

.header-btns {
	display: none;
	gap: 10px;
	align-items: center;
	justify-content: center;
}

.basket-icon {
	display: flex;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 22px;
  position: relative;
}

.hamburger-line {
  width: 100%;
  height: 2.5px;
  background-color: #6B6B6B;
  border-radius: 2.5px;
  transition: all 0.3s ease-in-out;
  position: absolute;
  left: 0;
}
.hamburger-line:nth-child(1) {
  top: 0;
}
.hamburger-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.hamburger-line:nth-child(3) {
  bottom: 0;
}
/* Animated state when menu is open */
.nav-toggle.active .hamburger-line:nth-child(1) {
  top: 50%;
  width: 120%; /* Lengthens the line */
  left: -10%; /* Centers the longer line */
  transform: translateY(-50%) rotate(45deg);
}
.nav-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active .hamburger-line:nth-child(3) {
  bottom: 50%;
  width: 120%; /* Lengthens the line */
  left: -10%; /* Centers the longer line */
  transform: translateY(50%) rotate(-45deg);
}

.no-scroll {
  overflow: hidden;
  height: 100vh; /* prevents vertical scrolling */
}

header .socials, .header-fixed .socials {
	gap: 12px;
	align-items: center;
	position: absolute;
	bottom: 60px;
	display: none;
}

.facebook {
	fill: #467B5D;
	height: 32px;
	width: 32px;
}

.instagram {
	fill: #467B5D;
	height: 32px;
	width: 32px;
}

.tiktok {
	fill: #467B5D;
	height: 32px;
	width: 32px;
}

@media (max-width: 768px) {
	header, .header-fixed {
		padding: 0px;
	}

    header nav ul, .header-fixed nav ul {
      flex-direction: column;
      display: none; /* Hide menu by default */
      width: 100%;
    }
    
    nav ul.show {
     	display: block;
     	padding: 0px;
     	outline: none;
     	margin-top: 20px;
    }

    header.show, .header-fixed.show {
    	height: calc(100vh);
    	background-color: white;
    }
    
    .nav-toggle {
      display: block;
    }
    
    header.show .content-wrapper-wide, .header-fixed.show .content-wrapper-wide {
    	justify-content: flex-start;
    	flex-direction: column;
    }

    .mobile-container {
    	height: 150px;
    	display: flex;
    	width: 100%;
    	justify-content: space-between;
    	align-items: center;
    }
    
    header nav ul li, .header-fixed nav ul li {
      text-align: center;
      padding: 15px 0;
    }

    header.show .socials, .header-fixed.show .socials {
    	display: flex;
    }

	.header-btns {
		display: flex;
	}

	.basket-icon {
		display: flex;
	}

	nav .basket-icon {
		display: none;
	}
}

#hero {
	padding: clamp(40px, 10vw, 90px) 0 clamp(40px, 10vw, 95px) 0;
	background-color: #467B5D;
	color: white;
	text-align: center;
	overflow: hidden;
	position: relative;
}

#hero .content-wrapper-wide {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: clamp(15px, 3vw, 30px);
}

h1 {
	font-size: 44px;
}

#hero h1 {
	margin: 0;
	font-size: clamp(32px, 5vw, 44px);
	font-weight: 500;
}

#hero p {
	font-weight: 400;
}

#hero strong {
	font-weight: 700;
}

.buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	margin-top: 0px;
}

.buttons-left {
	justify-content: flex-start;
}

.button {
	padding: 10px 15px;
	outline: 1px solid black;
	display: inline-block;
	border-radius: 5px;
	color: white;
	font-weight: 600;
	font-size: 16px;
}

.button-green-outline {
	color: #467B5D;
	outline: 2px solid #467B5D;
}

.button-green-outline:hover {
	background-color: #467B5D;
	color: white;
}

.button-green {
	background-color: #467B5D;
	color: white;
	outline: 2px solid #467B5D;
}

#hero .button {
	color: white;
	outline-color: white;
	font-weight: 600;
	background: transparent;
	transition: background 0.3s ease;
	z-index: 2;
}

#hero .button:hover {
	background-color: white;
	color: #467B5D;
}

#gif {
  width: clamp(500px, 70vw, 700px);
  position: absolute;
  bottom: -5px;
  z-index: 1;
  animation-timing-function: linear;
  animation-iteration-count: infinite;   
}

@keyframes moveAcross {
  from {
    transform: translateX(100vw);
  }
  to {
    transform: translateX(-600px);
  }
}

#story {
	padding: 80px 0px;
}

#story h2 {
	font-weight: 500;
	font-size: 38px;
	margin-top: 0px;
	margin-bottom: 44px;
}

#story .content-wrapper-wide {
	display: flex;
	gap: 6%;
	align-items: center;
	font-weight: 400;
}

#story .slideshow {
  flex-basis: 50%;
  position: relative;
	aspect-ratio: 750 / 683;
}

.slide {
  position: absolute;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

/*.slide:first-child.active {
  opacity: 1 !important;
  z-index: 1;
  transition: none !important; 
}
*/
.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide picture {
  width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide .caption {
	position: absolute;
	bottom: 0;
	padding: 0px 14px;
	display: flex;
	background-color: rgba(0, 0, 0, 0.2);
	width: 100%;
	font-size: 16px;
	height: 45px;
	justify-content: space-between;
	align-items: center;
}

.main-display {
	position: relative;
}

.main-display picture,
.main-display .main-video {
	display: block;
	width: 100%;
	aspect-ratio: 618 / 574;
}

.main-display picture .main-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.image-caption {
	position: absolute;
	bottom: 10px;
	left: 18px;
	margin: 0;
	font-size: 14px;
	color: white;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
	transition: opacity 0.2s;
	pointer-events: none;
}

.main-display:has(.main-video:hover) .image-caption {
	opacity: 0;
}

.slide figcaption {
	color: white;
	font-weight: 500;
}

.slide-nav {
	position: absolute;
	height: 45px;
	bottom: 0;
	right: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
    margin-right: 15px;
}

.slide-prev,
.slide-next {
    background: none;
    border: none;
    color: white;
	margin: 0;
	text-align: center;
    font-size: 30px;
	line-height: 30px;
    cursor: pointer;
    padding: 0 4px;
    opacity: 0.75;
    transition: opacity 0.2s;
	margin-bottom: 6px;
}

.slide-prev:hover,
.slide-next:hover {
    opacity: 1;
}

.slide-counter {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    min-width: 36px;
    text-align: center;
    font-family: "Mulish", sans-serif;
}

#story .text {
	flex-basis: 50%;
}

#about-page {
	padding: 10px 0 80px;
}

#about-page .content-wrapper-wide {
	display: flex;
	flex-direction: column;
	align-items: center;
}

#about-page .text {
	max-width: 680px;
	width: 100%;
	text-align: center;
	margin-bottom: 30px;
}

.about-gallery {
	columns: 4 220px;
	column-gap: 16px;
	width: 100%;
	padding: 0 5%;
	margin-top: 20px;
}

.gallery-item {
	cursor: pointer;
	display: block;
	break-inside: avoid;
	margin-bottom: 16px;
	position: relative;
}

.gallery-item picture {
	display: block;
	overflow: hidden;
}

.gallery-item img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.3s ease;
}

@media (hover: hover) {
	.gallery-item:hover img {
		transform: scale(1.04);
	}
}

.gallery-item p {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0;
	padding: 20px 10px 8px;
	font-size: 13px;
	color: white;
	font-style: italic;
	text-align: center;
	background: linear-gradient(transparent, rgba(0,0,0,0.45));
}

/* Lightbox */

.lightbox {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.88);
	z-index: 1000;
	align-items: center;
	justify-content: center;
}

.lightbox.open {
	display: flex;
}

.lightbox-content {
	position: relative;
	max-width: 90vw;
	max-height: 90vh;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.lightbox-content img {
	max-width: 90vw;
	max-height: 80vh;
	object-fit: contain;
	display: block;
}

.lightbox-caption {
	color: rgba(255,255,255,0.75);
	font-size: 14px;
	font-style: italic;
	margin-top: 12px;
}

.lightbox-close {
	position: absolute;
	top: 20px;
	right: 24px;
	background: none;
	border: none;
	color: white;
	font-size: 32px;
	cursor: pointer;
	line-height: 1;
	opacity: 0.8;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: white;
	font-size: 48px;
	cursor: pointer;
	opacity: 0.7;
	line-height: 1;
	padding: 0 16px;
	z-index: 10;
}

.lightbox-prev:hover,
.lightbox-next:hover { opacity: 1; }

.lightbox-prev { left: 0; }
.lightbox-next { right: 0; }

h2	{
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 30px;
}

.text p {
	margin-top: 20px;
}

#about-page .content-wrapper-wide {
	display: flex;
	align-items: center;
	flex-direction: column;
	padding-top: 40px;
}

#about-page .text {
	max-width: 750px;
	text-align: center;
}

#about-page .text h1 {
	font-size: clamp(1.9rem, 6vw, 38px);
	font-weight: 500;
	margin-bottom: 40px;
	margin-top: 0;
}

@media (max-width: 600px) {
	#about-page .text h1 {
		margin-bottom: 35px;
		margin-top: -10px;
	}
}

#blog {
	padding: 80px 0px;
	background-color: #F5F3EF;
}

#blog .content-wrapper {
	max-width: 1280px;
	display: flex;
	gap: 5%;
	align-items: center;
}


.blog-img {
	flex-basis: 40%;
	min-width: 300px;
	display: flex; 
	overflow: hidden; 
}

.blog-img picture {
	display: flex; 
	align-items: center
}

#blog img {
	width: 100%;
	height: auto; 
}

#blog .text {
	flex-basis: 68%;
}

#blog h3 {
	font-size: 28px;
	text-wrap: unset;
	font-weight: 500;
	margin-top: 20px;
}

h3 span, h2 span, h1 span {
	display: inline-block;
}

#blog p {
	font-size: 17px;
}

#blog h2 {
	font-size: 18px;
	color: #467B5D;
	font-family: Mulish;
	font-weight: 700;
	letter-spacing: 0.5px;
	margin: 0px;
}

#blog .buttons {
	justify-content: flex-start;
	gap: 20px;
	margin-top: 30px;
}

#blog .button-green-outline {
	color: #365A44;
}

#blog .button-green-outline:hover {
	color: white;
}

@media (max-width: 768px) {	
	#story {
		padding: 0px 0px 40px 0px;
	}

	#story .content-wrapper-wide {
		flex-direction: column;
		padding: 4.5% 4.5% 0 4.5%;
	}

	#story .text {
		padding: 0 2%;
	}

	#story h2 {
		margin: 28px 0px 24px 0px;
		font-size: 30px;
	}

	#story .slideshow {
		touch-action: pan-y;
	}

	#story .slideshow,
	#story .text {
		flex-basis: auto;       
		width: 100%;        
	}

  	.slide {
		display: flex;
		align-items: flex-start;
	}

	.slide figcaption {
		font-size: 13px;
	}

	.slide .caption {
		padding-right: 115px;
	}

	.slide-nav {
		gap: 3px;
		margin-right: 10px;
	}

	.slide-prev,
	.slide-next {
		font-size: 30px;
		padding: 0 3px;
	}

	.slide-counter {
		font-size: 12px;
		min-width: 30px;
	}

	#blog {
		padding: 0 0 40px 0;
	}

	#blog h2 {
		margin: 0px;
	}

	#blog h3 {
		font-size: 28px;
	}

	#blog .content-wrapper {
		flex-direction: column;
		gap: 34px;
		align-items: flex-end;
		padding: 0px;
	}

	.blog-img {
		width: 100%;
	}

	#blog picture {
		width: 100%;
		height: 100%;
	}

	#blog img {
		width: 100%;
		object-fit: cover;
		height: 400px;
	}

	#blog .text {
		padding: 0px 5%;
	}
}

@media (max-width: 600px) {	
	#blog img {
		height: 260px;
	}
}

#contact, #contact-page {
	padding: clamp(4vw, 5vw, 40px) 0 calc(clamp(4vw, 5vw, 40px) - 15px);
	background-color: #467B5D;
}

.contact-form {
	max-width: 600px;
	padding: 40px;
	background-color: white;
	margin: auto;
}

#contact h2, #contact-page h1 {
	margin: 0px 0px 20px 0px;
	font-weight: 500;
	font-size: 30px;
}

.contact-form form {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 30px;
}

.contact-form a {
	color: #467B5D;
	font-weight: 700;
}

.contact-form p {
	margin-top: 12px;
	font-size: 17px;
}

.form-row {
	display: flex;
	align-items: center;
	gap: 10px;
}

.form-row label {
	display: inline-block;
	flex: 0 0 80px;
	text-align: right;
	font-size: 17px;
	font-weight: 700;
}

input {
	padding: 10px;
	font-size: 18px;
}

.contact-form form input {
	width: 100%;
}

.textarea {
	align-items: flex-start;
}

.textarea label {
	margin-top: 10px;
}

.red {
	color: red;
}

form textarea {
	flex: 1;
	font-size: 18px;
}

form button {
	outline: none;
	border: none;
}

.contact-form form button {
	align-self: flex-start;
	padding: 15px 20px;
	margin-left: 90px;
	background-color: #467B5D;
	color: white;
	font-weight: 700;
	border-radius: 5px;
}

form button:hover {
	cursor: pointer;
}

.message-sent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	align-self: center;
	margin-top: 0;
	padding: 14px 18px;
	background-color: #f0f7f3;
	border: 1px solid #b6d9c5;
	border-radius: 6px;
	box-shadow: 0 1px 4px rgba(0,0,0,0.07);
	font-weight: 500;
	color: #234d38;
	line-height: 1.5;
	text-wrap: balance;
	text-align: center;
}

@media (max-width: 768px) {
	#contact .contact-form, #contact-page .contact-form {
		padding: 5vw;
	}

	#contact .content-wrapper-wide, #contact-page .content-wrapper-wide {
		padding: 0 5vw;
	}

	.form-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
	}
	.form-row label {
		flex: 0;
	}
	textarea {
		width: 100%;
	}
	.contact-form form button {
		margin-left: 0px;
	}
}

@media (max-width: 600px) {
	#contact .content-wrapper-wide, #contact-page .content-wrapper-wide {
		padding: 0;
	}

	#contact-page, #contact {
		padding: 15px 0 0 0;
	}

	#contact h2, #contact-page h1 {
		margin-top: 15px;
	}

	#contact-page form {
		margin-bottom: 10px;
	}
}

footer {
	width: 100%;
	padding: 40px 0 0 0;
	border-top: 15px solid #467B5D;
}

footer .content-wrapper-wide {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer-logo {
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: center;
}

.footer-logo picture img, .footer-logo picture {
	height: auto;
	min-width: 60px;
	max-width: 60px;
}

footer p {
	margin: 0px;
	font-size: 15px;
	max-width: 250px;
	color: #333333;
}


footer .contact {
	display: flex;
	align-items: center;
	gap: 40px;
}

footer .socials {
	display: flex;
	gap: 12px;
	align-items: center;
}


.footer-links {
	display: flex;
	flex-direction: row;
	gap: 16px;
}

.contact-link {
	display: none;
	font-weight: 700;
	font-size: 18px;
}

.contact-link a {
	display: flex;
	align-items: center;
	gap: 6px;
	color: #467B5D;
	text-decoration: none;
}

.footer-copyright {
	border-top: 1px solid #e5e5e5;
	margin-top: 40px;
	padding: 30px 0;
	text-align: center;
}

.footer-copyright .content-wrapper-wide {
	display: flex;
	justify-content: center;
}

.footer-legal-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 8px;
	justify-content: center;
}

.footer-legal-links a,
.footer-legal-links span:not(.footer-dot) {
	font-size: 12px;
	color: #777;
	text-decoration: none;
	white-space: nowrap;
}

.footer-dot {
	color: #777;
	font-size: 5px;
}


@media (max-width: 768px) {
	footer {
		padding: 25px 0 0 0;
	}

	.footer-copyright {
		margin-top: 25px;
	}

	.footer-legal-links {
		justify-content: center;
	}

	.footer-logo {
		gap: 15px;
	}

	footer .content-wrapper-wide {
		justify-content: center;
		padding: 0px 6%;
		gap: 25px;
		flex-direction: column;
	}

	footer p {
		max-width: 500px;
	}

	footer .contact {
		width: 100%;
		padding: 25px 0 0 0;
		border-top: 1px solid lightgrey;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	footer .socials {
		gap: 10px;
	}

	.contact-link {
		display: block;
		font-size: 14px;
	}

}

#blog-home {
	background-color: #467B5D;
	min-height: calc(100vh - 150px);
}

#blog-home .content-wrapper {
	max-width: 1200px;
}

.blog-hero {
	color: white;
	padding: 70px 0;
	text-align: center;
	margin: 0;
}

#blog-home h1 {
	text-align: center;
	color: white;
	font-weight: 500;
	font-size: clamp(1.9rem, 6vw, 38px);
	margin-top: 0;
	padding: 0;
	word-wrap: break-word;
}

#shop-home h1 {
	text-align: center;
	color: white;
	font-weight: 500;
	font-size: clamp(1.9rem, 6vw, 38px);
	margin-top: 0;
	max-width: 100%;
	word-wrap: break-word;
}

#blog-home .post h2 {
	font-size: 26px;
	font-weight: 500;
}

#blog-home .posts .post {
	background-color: white;
	display: flex;
	align-items: stretch;
	width: 100%;
	color: inherit;
	min-height: 300px;
}

#blog-home .posts {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.post .img-container {
  flex-basis: 35%;
  flex-shrink: 0;
  display: flex;       
  overflow: hidden;
}

.img-container picture {
  flex: 1;             
  display: flex;    
  width: 100%;  
  height: 100%;  
}

.img-container picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post .content {
	flex: 1;
	padding: 40px 60px 50px 40px;
	display: flex;
	flex-direction: column;
	gap: 25px;
	justify-content: center;
}

.post .img-container {
	overflow: hidden;
}

.post .img-container img {
	transition: transform 0.4s ease;
}

.post:hover .img-container img {
	transform: scale(1.05);
}

time {
	font-weight: 700;
	font-size: 16px;
	margin-bottom: -10px;
	color: #467B5D;
}

.content h2, .content p, .content a {
	margin: 0px;
	white-space: normal;       
	word-break: break-word;    
	overflow-wrap: break-word;
}

.content p {
	font-size: 16px;
}

.content .button {
	margin-top: 5px;
}

#shop-home .content-wrapper-wide {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 5%;
	max-width: unset;
}

#shop-home {
	margin: 0;
	background-color: #f5f5f5;
}

#shop-home .subscribe {
	margin-top: 60px;
}

.shop-hero {
	background-color: #467B5D;
	color: white;
	padding: 65px 0;
	text-align: center;
	margin: 0;
	margin-top: 0;
}

.shop-hero h1 {
	font-size: 32px;
	margin-bottom: 20px
}

.shop-hero p {
	font-size: 17px;
	opacity: 1;
	margin-top: 12px;
}

.shop-grid {
	margin-top: 40px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 20px;
	row-gap: 30px;
	max-width: 1350px;
	width: 100%;
}

.shop-grid .shop-item {
	background-color: white;
	height: 100%;
}

.shop-coming-soon {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px dashed #c5d9ce;
	border-bottom: 2px dashed #c5d9ce !important;
	color: #7aaa90;
	font-size: 15px;
	font-weight: 700;
	min-height: 80px;
	cursor: default;
}

.shop-item .img-container {
	max-height: 280px;
	overflow: hidden;
	position: relative;
}

.out-of-stock {
	font-size: 16px;
	font-weight: 700;
	color: #aa3333;
	margin: 16px 0;
}

.sold-out-banner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-35deg);
	background: #aa3333;
	color: white;
	font-weight: 800;
	font-size: 16px;
	letter-spacing: 3px;
	padding: 12px 0;
	width: 150%;
	text-align: center;
	text-transform: uppercase;
	z-index: 10;
	pointer-events: none;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.coming-soon-banner {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: #467B5D;
	color: white;
	font-weight: 800;
	font-size: 14px;
	letter-spacing: 3px;
	padding: 10px 0;
	text-align: center;
	text-transform: uppercase;
	z-index: 10;
	pointer-events: none;
}

.shop-item.no-link .text::after {
	display: none;
}

.img-container img {
	max-height: 100%;
	width: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.shop-item:hover .img-container img {
	transform: scale(1.05);
}

.shop-item {
	display: flex;
	flex-direction: column;
	border-bottom: 1px solid rgb(231, 231, 231);
}

.shop-item h2 {
	color: black;
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	font-family: Mulish;
	text-wrap: unset;
}

.shop-item .text {
	padding: 20px 15px;
	display: flex;
	flex: 1;
	flex-direction: column;
	position: relative;
}

.shop-item .text::after {
	content: '→';
	position: absolute;
	bottom: 16px;
	right: 15px;
	color: #467B5D;
	font-size: 18px;
	transition: transform 0.2s ease;
}

.shop-item:hover .text::after {
	transform: translateX(4px);
}

.shop-item .text p {
	margin-top: 16px;
	font-size: 13.5px;
	font-weight: 500;
}

.shop-item .text .shop-desc {
	font-size: 13px;
	color: #777;
	margin-top: 6px;
	margin-bottom: 0;
	font-weight: 400;
}

.shop-item .shop-pricing {
	margin-top: auto;
	padding-top: 14px;
}

.shop-item .shop-pricing p {
	margin-top: 0;
}

.shop-item .shop-pricing p + p {
	margin-top: 5px;
}

.shop-item .text p.shop-price {
	font-size: 15px;
	font-weight: 700;
	color: #467B5D;
	padding: 0;
	margin-bottom: 0;
	margin-top: auto;
}

.shop-item .shop-delivery {
	font-size: 13px;
	color: #666;
	font-weight: 400;
	margin-bottom: 0;
}

.shop-item-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: auto;
	padding-top: 14px;
	font-size: 14px;
	font-weight: 700;
	color: white;
	background-color: #467B5D;
	padding: 10px 18px;
	text-decoration: none;
}

.shop-item .button {
	width: 100%;
	text-align: center;
	margin-top: auto;
	display: block;
	box-sizing: border-box;
}

.newsletter {
	background-color: #467B5D;
	margin-top: 0px;
	padding: clamp(20px, 5vw, 60px) 0px calc(clamp(20px, 5vw, 60px) - 15px);
}

.newsletter--full {
	min-height: calc(100vh - 150px);
	padding-top: clamp(40px, 8vw, 100px);
}

.newsletter .content-wrapper {
	padding: 0 4vw;
}

.newsletter p {
	font-size: 15px;
}

#shop-home .newsletter {
	margin-top: 40px;
}

#shop-home .subscribe {
	margin: auto;
}

#shop-home .more {
	color: #3A6A4F;
	width: 100%;
	text-align: center;
	margin-top: 50px;
	font-weight: 700;
	font-size: 16px;
}


@media (max-width: 768px) {
	.desktop-only {
		display: none;
	}

	#shop-home .content-wrapper-wide {
		padding: 0 4% 0 4%;
	}

	.shop-hero {
		padding: 40px 0;
	}

	.shop-hero p {
		margin-bottom: 0;
	}

	#shop-home h1 {
		margin-bottom: 20px;
	}

	#shop-home .newsletter {
		margin-top: 0;
	}

	.shop-grid {
		grid-template-columns: 1fr;
		margin-top: 6%;
		margin-bottom: 40px;
		row-gap: 20px;
	}

	.shop-item .text {
		padding: 20px 16px 25px;
	}

	.shop-item .soon {
		padding: 10px 20px;
	}

	.shop-item .img-container {
		max-height: 350px;
	}

	#shop-home .more {
		width: 100%;
		text-align: center;
		padding-top: 20px;
		padding-bottom: 20px;
		font-weight: 700;
		margin-top: 12px;
	}

	#blog-home .posts {
		gap: 25px;
	}

	#blog-home .post .content {
		gap: 20px;
	}

	#blog-home .img-container {
		max-height: 250px;
	}

	#blog-home h2 {
		font-size: 24px !important;
	}
}


@media (max-width: 600px) {
	.shop-item .img-container {
		max-height: 240px;
	}
}

.shop-page .content-wrapper {
	margin: auto;
}

/* ── Basket / checkout page ── */
.basket-page {
	background-color: #f5f5f5;
	min-height: calc(100vh - 150px);
	padding: 30px 0 60px;
}

.basket-page .content-wrapper {
	background-color: transparent;
	padding: 0 40px;
}

.basket-page h1 {
	font-size: 26px;
	font-weight: 400;
	padding: 20px 0 16px;
	border-bottom: 1px solid #ccc;
	margin-bottom: 0;
}

.basket-count {
	font-size: 18px;
	color: #666;
	font-weight: 400;
}

.basket-empty {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	padding: 25px 0;
}

/* Two-column layout */
.basket-layout {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.basket-main {
	flex: 1;
	background: white;
	padding: 0 25px 25px;
	min-width: 0;
}

.basket-sidebar {
	width: 340px;
	flex-shrink: 0;
}

.basket-summary-box {
	background: white;
	border-radius: 4px;
	padding: 20px;
	position: sticky;
	top: 20px;
}

.basket-summary-title {
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid #eee;
}

.basket-summary-title span {
	font-weight: 700;
}

.shipping-notice {
	font-size: 13px;
	color: #666;
	margin-bottom: 16px;
}

.basket-actions {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.basket-actions .button {
	text-align: center;
	display: block;
}

/* Items */
.basket-row {
	display: flex;
	gap: 20px;
	padding: 20px 0;
	border-bottom: 1px solid #ddd;
	align-items: flex-start;
}

.basket-thumbnail {
	height: 130px;
	flex-shrink: 0;
}

.basket-item-details {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.basket-item-name {
	font-weight: 700;
	font-size: 17px;
	margin: 0;
}

.basket-variant {
	font-size: 14px;
	color: #666;
	display: block;
	margin-top: 3px;
	text-transform: capitalize;
}

.basket-item-bottom {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 12px;
}

.basket-qty-form {
	display: flex;
	align-items: center;
	gap: 8px;
}

.basket-qty-btn {
	background: none;
	border: 1px solid #ccc;
	border-radius: 3px;
	width: 32px;
	height: 32px;
	font-size: 20px;
	cursor: pointer;
	line-height: 1;
}

.basket-qty-btn:hover {
	border-color: #467B5D;
	color: #467B5D;
}

.basket-qty-display {
	font-size: 16px;
	min-width: 16px;
	text-align: center;
}

.basket-remove {
	background: none;
	border: none;
	color: #999;
	font-size: 14px;
	cursor: pointer;
	padding: 0;
	text-decoration: underline;
	font-family: inherit;
}

.basket-remove:hover {
	color: #c0392b;
}

.basket-item-pricing {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-left: auto;
}

.basket-item-price {
	font-size: 13px;
	color: #888;
}

.basket-item-subtotal {
	font-size: 18px;
	font-weight: 700;
}

@media (max-width: 950px) {
	.basket-layout {
		flex-direction: column;
	}

	.basket-main {
		width: 100%;
	}

	.basket-sidebar {
		width: 100%;
	}
}

@media (max-width: 950px) and (min-width: 601px) {
	.basket-actions {
		flex-direction: row;
	}

	.basket-actions .button {
		flex: 1;
	}
}


@media (max-width: 600px) {
	.basket-page {
		padding: 20px 0 40px;
	}

	.basket-page .content-wrapper {
		padding: 0 10px;
	}

	.basket-main {
		padding: 0 15px 20px;
	}

	.basket-summary-box {
		padding: 15px;
	}

	.basket-thumbnail {
		height: 110px;
	}

	.basket-item-bottom {
		flex-wrap: wrap;
		gap: 8px;
	}

	.basket-item-pricing {
		margin-left: 0;
		width: 100%;
	}

	.basket-actions .button {
		width: 100%;
		box-sizing: border-box;
	}
}

/* item for sale page */

.left-wrapper {
	width: 100%;
}

.soon {
	display: inline-block;
	font-size: 13px;
	font-weight: 800;
	color: #3A6A4F;
	background-color: #e8f0eb;
	padding: 12px 15px;
	margin-top: 10px;
	margin-bottom: -8px;
}

.shop-item .soon {
	display: block;
	font-size: 15px;
	padding: 12px 25px;
	margin: 0;
}

.item-for-sale {
	margin: auto;
	margin-top: 50px;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 55px;
	margin-bottom: 50px;
	max-width: 1600px;
}

.item-for-sale.has-specs {
	display: grid;
	grid-template-columns: 32% 1fr 280px;
	gap: 55px;
	padding: 0 4%;
	margin-bottom: 70px;
}

.item-for-sale .content {
	display: flex;
	flex-direction: column;
	gap: 15px;
	flex: 1;
}

.specs-dropdown {
	display: none;
}

.specs-dropdown summary {
	cursor: pointer;
	font-weight: 700;
	font-size: .95rem;
	padding: .6rem 0;
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.specs-dropdown summary::after {
	content: '+';
	font-size: 1.2rem;
	color: #467B5D;
}

.specs-dropdown[open] summary::after {
	content: '−';
}

.specs-dropdown .specs-inline,
.specs-dropdown .specs-block {
	margin-top: .75rem;
}

.specs-dropdown .specs-block p {
	white-space: nowrap;
}

.specs-box {
	background: #f7f7f5;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	padding: 1.5rem;
	align-self: start;
	position: sticky;
	top: 20px;
	font-size: .9rem;
	margin-top: 10px;
}

.specs-box h2 {
	font-size: 1rem;
	font-weight: 700;
	margin: 0 0 1rem;
	padding-bottom: .75rem;
	border-bottom: 1px solid #e5e5e5;
}

.specs-inline {
	margin: 0 0 1rem;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: .4rem .75rem;
}

.specs-inline dt {
	font-weight: 700;
	color: #444;
	white-space: nowrap;
}

.specs-inline dd {
	margin: 0;
}

.specs-block {
	margin-bottom: .85rem;
}

.specs-block strong {
	display: block;
	font-weight: 700;
	color: #444;
	margin-bottom: .3rem;
}

.specs-block span {
	font-weight: 700;
}

.specs-block p {
	margin: 0;
	font-size: .9rem;
}

.specs-block ul {
	margin: 0;
	padding-left: 1.1rem;
	line-height: 1.7;
	font-size: .9rem;
	list-style: disc;
}

.specs-block ul li {
	list-style-type: disc;
}

.product-images {
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex-basis: 37%;
}

.product-images .main-image {
	width: 100%;
	height: auto;
	max-width: 100%;
}

.thumbnails {
	display: flex;
	gap: 7px;
	flex-wrap: wrap;
}

.thumbnail {
	flex: 1;
	min-width: 0;
	max-width: 70px;
	aspect-ratio: 1;
	object-fit: cover;
	cursor: pointer;
	border: 2px solid transparent;
	overflow: hidden;
}

.thumbnail img,
.thumbnail video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	opacity: 1;
	transition: opacity 0.2s ease;
}

.thumbnail.active {
	border-color: #3A6A4F;
	border-width: 3px;
}

.thumbnail.active img,
.thumbnail.active video {
	opacity: 1;
}

.thumbnail[data-type="video"] {
	position: relative;
}

.thumbnail[data-type="video"]::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(0,0,0,0.35);
	pointer-events: none;
	z-index: 1;
}

.thumbnail[data-type="video"]::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 52%;
	transform: translate(-50%, -50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6px 0 6px 10px;
	border-color: transparent transparent transparent rgba(255,255,255,0.7);
	pointer-events: none;
	z-index: 2;
}

.item-for-sale h1 {
	font-size: 28px;
	font-weight: 500;
	margin-top: 10px;
	margin-bottom: 0;
	text-wrap: unset;
}

.item-for-sale .price {
	font-size: 28px;
	font-weight: 800;
	margin-top: 10px;
	margin-bottom: 0;
	color: #3A6A4F;
}

.price .pence {
	font-size: 18px;
	vertical-align: baseline;
}

.item-for-sale h2 {
	font-size: 15px;
	margin-bottom: 0;
	font-weight: 700;
	text-wrap: unset;
}

.selections {
	display: flex;
	gap: 15px;
}

.selections {
	margin-top: 10px;
}

.selections select {
	padding: 10px 20px;
	width: 50%;
	outline: 2px solid #3A6A4F;
	border: none;
	background-color: white;
	color: #3A6A4F;
	cursor: pointer;
}

.quantity-row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 20px;
}

.quantity-row label {
	font-size: 15px;
	font-weight: 700;
	color: #333;
}

.quantity-stepper {
	display: flex;
	align-items: stretch;
	outline: 2px solid #3A6A4F;
	height: 35px;
}

.quantity-stepper input[type="number"] {
	width: 50px;
	padding: 0;
	border: none;
	outline: none;
	font-size: 15px;
	text-align: center;
	color: #3A6A4F;
	background: white;
	-moz-appearance: textfield;
}

.quantity-stepper input[type="number"]::-webkit-inner-spin-button,
.quantity-stepper input[type="number"]::-webkit-outer-spin-button {
	-webkit-appearance: none;
}

.qty-step {
	background-color: white;
	border: none;
	width: 36px;
	font-size: 20px;
	cursor: pointer;
	color: #3A6A4F;
	line-height: 1;
	outline: 1px solid #3A6A4F;
	z-index: 1000;
}

.qty-step:hover {
	background: #f0f7f3;
}

.item-for-sale .buttons {
	margin-top: 30px;
	justify-content: flex-start;
}

.item-for-sale .button {
	padding: 15px 50px;
}

.item-for-sale .button-green-outline {
	background-color: white;
}

.item-for-sale .button-green-outline:hover {
	background-color: #3A6A4F;
}


.stripe-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin: 0;
	color: #777;
	font-size: 8px !important;
	text-decoration: none;
	padding-top: 20px;
}

.stripe-badge p {
	font-size: 13px;
}

.stripe-badge:hover {
	color: #6b7280;
}

.stripe-badge:hover .stripe-badge__logo {
	fill: #6b7280;
}

.stripe-badge__logo {
	height: 15px;
	width: auto;
	margin-top: 2px;
	flex-shrink: 0;
	vertical-align: middle;
}

.shop-other {
	margin: 0;
	padding: 35px 0 50px 0;
	border-top: 1px solid #e5e5e5;
}

.shop-other h2 {
	font-size: 24px;
	font-weight: 500;
	margin: 0;
}

.shop-other-grid {
	display: flex;
	gap: 1.25rem;
	flex-wrap: wrap;
	margin-top:30px;
}

.shop-other-card {
	display: flex;
	flex-direction: column;
	width: 220px;
	text-decoration: none;
	color: inherit;
	background-color: white;
	overflow: hidden;
	border: 1px solid #e7e7e7;
	transition: box-shadow 0.2s, transform 0.2s;
}

.shop-other-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
	transform: translateY(-2px);
}

.shop-other-card img {
	width: 100%;
	height: 165px;
	object-fit: cover;
	object-position: center 60%;
}

.shop-other-card h3 {
	
	padding: 14px 14px 4px;
	font-size: 16px;
	font-weight: 700;
	font-family: "Mulish", sans-serif;
	color: black;
	margin: 0;
	text-wrap: unset;
}

.shop-other-card p {
	padding: 4px 14px 16px;
	font-size: 14px;
	font-weight: 700;
	color: #467B5D;
	margin: 0;
}

.shop-other-card .collection-tag {
	padding: 2px 14px 0;
	font-size: 12px;
	font-weight: 600;
	color: #888;
}

.shop-other-card .collection-tag:last-child {
	padding-top: 0;
	padding-bottom: 14px;
}

.shop-other-card p:not(.collection-tag):has(+ .collection-tag) {
	padding-bottom: 2px;
}

@media (max-width: 768px) {
	.shop-other .content-wrapper-wide {
		padding: 0 !important;
	}

	.shop-other h2 {
		padding: 0 5%;
	}

	.shop-other-grid {
		flex-wrap: nowrap;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scroll-padding-left: 5%;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		padding: 0 5%;
	}

	.shop-other-grid::-webkit-scrollbar {
		display: none;
	}

	.shop-other-dots {
		display: flex;
		justify-content: flex-start;
		gap: 6px;
		margin-top: 20px;
		padding-left: 8%;
	}

	.shop-other-dots .dot {
		width: 7px;
		height: 7px;
		border-radius: 50%;
		background: #d0d0d0;
		transition: background 0.2s;
	}

	.shop-other-dots .dot.active {
		background: #467B5D;
	}

	.shop-other-card {
		flex-shrink: 0;
		scroll-snap-align: start;
	}
}

span {
	text-wrap: wrap;
}

.item-for-sale .message-sent {
	text-align: left;
	align-self: flex-start;
}

/* Small screens → 1 column */
@media (max-width: 768px) {
    .posts .post {
    	flex-direction: column;
    }
    .post .content {
    	padding: 5vw 5vw 6vw;
    }
    .posts .post .img-container img {
    	height: 320px;
    }
    #blog-home .content-wrapper {
    	padding: 0 4vw;
    }
	#blog-home .newsletter .content-wrapper {
		padding: 0;
	}

	.blog-hero {
		padding: 50px 0;
	}

	.posts .post .buttons {
		display: none;
	}

	.item-for-sale .message-sent {
		text-align: center;
		margin-top: 0;
	}
}

@media (max-width: 1230px) {
	.item-for-sale.has-specs {
		grid-template-columns: 42% 1fr;
	}

	.specs-box { display: none; }
	.specs-dropdown { display: block; margin-top: 12px; margin-bottom: 12px; }
}

@media (max-width: 768px) {
	.item-for-sale,
	.item-for-sale.has-specs {
		flex-direction: column;
		grid-template-columns: 1fr;
		gap: 15px;
		margin-top: 5%;
		margin-bottom: 40px;
	}

	.shop-page .content-wrapper-wide {
		padding: 0 4%;
	}

	.item-for-sale .content { gap: 10px; }

	.item-for-sale .price { margin-top: 4px; }

	.item-for-sale .buttons {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
	}
}

@media (max-width: 600px) {
    .posts .post .img-container img {
    	height: 260px;
    }
}

.blog-post, .shop-page {
    min-height: calc(100vh - 150px);
    background-color: #F5F3EF;
	border-top: 1px solid white;
}

.shop-page {
	background-color: white;
	overflow: hidden;
}

.blog-nav, .shop-nav {
    width: 100%;
    background-color: #467B5D;
    padding: 11px 0;
}

.blog-nav .content-wrapper-wide,
.shop-nav .content-wrapper-wide {
    height: auto;
}

.shop-page .blog-nav,
.shop-page .shop-nav {
    display: block;
}

.blog-nav ol,
.shop-nav ol {
    list-style: none;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    gap: 0;
}

.blog-nav ol li,
.shop-nav ol li {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
}

.blog-nav ol li + li::before,
.shop-nav ol li + li::before {
    content: '>';
    padding: 0 7px;
    color: white;
}

.blog-nav ol li a,
.shop-nav ol li a {
    color: white;
    margin: 0;
    text-decoration: none;
}

.blog-nav ol li a:hover,
.shop-nav ol li a:hover {
    text-decoration: underline;
}

.blog-nav ol li[aria-current="page"],
.shop-nav ol li[aria-current="page"] {
    color: white;
}

@media (max-width: 768px) {
    .blog-nav,
    .shop-nav {
        display: block;
    }
}

.blog-post h1 {
	font-size: 36px;
	font-weight: 500;
	margin-top: 15px;
	text-wrap: unset;
}

.blog-post h3 {
	font-weight: 500;
	margin-top: 30px;
	margin-bottom: 20px;
	text-wrap: unset;
}

.blog-post .content-wrapper-wide.with-aside {
	margin-top: 40px;
	max-width: 1300px;
	padding-left: 30px;
	padding-right: 30px;
}

.blog-post .content-wrapper-wide.with-aside .post-content {
	display: grid;
	grid-template-columns: min(43%, 460px) 1fr;
	grid-template-areas:
		"aside top"
		"aside text"
		"aside comments";
	column-gap: clamp(20px, 4vw, 70px);
	row-gap: 25px;
	max-width: none;
	margin: 0;
	margin-top: 40px;
}

.blog-post .content-wrapper-wide.with-aside .top-block { grid-area: top; max-width: 600px; }
.blog-post .content-wrapper-wide.with-aside aside { grid-area: aside; align-self: start; }
.blog-post .content-wrapper-wide.with-aside .post-text { grid-area: text; max-width: 600px; }
.blog-post .content-wrapper-wide.with-aside .comments-section { grid-area: comments; }

.blog-post .post-text strong {
	font-weight: 700;
	color: #365f4c;
}

.blog-post .post-text img {
	width: 100%;
	height: auto;
	margin-top: 35px;
	margin-bottom: 14px;
}

.blog-post .post-text figure {
	width: fit-content;
	margin: 0;
}

.blog-post .post-text figcaption {
	text-align: center;
	font-style: italic;
	font-size: 15px;
	color: #555;
	margin-top: 6px;
}

.blog-post .post-text .img-narrow {
	max-width: 400px;
}

.blog-post .post-text .img-medium {
	max-width: 500px;
}

.blog-post .post-text h2 {
	font-family: "Noto Serif", serif;
	font-weight: 500;
	font-size: 22px;
	color: black;
	margin-top: 35px;
	text-wrap: unset;
}

.blog-post aside {
	max-width: 460px;
}

.blog-post aside figure {
	margin: 0;
	margin-top: 45px;
}

.blog-post aside img {
	height: auto;
}

.blog-post aside figcaption {
	margin-top: 10px;
	font-size: 15px;
	color: #444444;
	font-style: italic;
}

.post-content {
	max-width: 650px;
	margin: auto;
	margin-top: 40px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.post-content video {
	max-width: 100%;
	margin-bottom: 0px;
}

@media (max-width: 768px) {
	.blog-post h1 {
		font-size: 32px;
	}

	.blog-post .content-wrapper-wide.with-aside {
		padding-left: 5%;
		padding-right: 5%;
	}

	.blog-post aside figure {
		margin-top: 20px;
	}

	.blog-post .content-wrapper-wide.with-aside .post-content {
		display: flex;
		flex-direction: column;
		max-width: 600px;
		margin: auto;
		margin-top: 40px;
		gap: 15px;
	}

	.blog-post .content-wrapper-wide.with-aside aside {
		max-width: 600px;
		align-self: center;
	}

	.blog-post .post-text figure {
		width: 100%;
	}

	.blog-post .post-text .img-narrow,
	.blog-post .post-text .img-medium {
		max-width: 100%;
	}
}

textarea {
	padding: 8px;
}

label:empty {
  display: none;
}

.subscribe {
	background-color: white;
	padding: clamp(27px, 5vw, 40px) clamp(15px, 4vw, 40px) clamp(15px, 4vw, 40px) clamp(15px, 4vw, 40px);
	max-width: 550px;
	display: flex;
	flex-direction: column;
	gap: 15px;
	text-align: center;
	width: 100%;
	margin: auto;
}

.subscribe h1,
.subscribe h2 {
	margin: 0;
	text-wrap: unset;
	font-weight: 500;
	font-size: 26px;
	margin-bottom: 5px;
}

.subscribe p {
	margin: 0px;
	margin-bottom: 5px;
	font-size: 16px;
}

.subscribe form {
	display: flex;
	flex-direction: column;
	gap: 15px;
	font-size: 18px;
}

.subscribe button {
	font-size: 17px;
	border-radius: 0;
	padding: 12px;
}

.subscription-fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

.subscription-fieldset legend {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 15.5px;
}

/* THIS is what makes them horizontal */
.subscription-fieldset {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

/* Keep legend on its own line */
.subscription-fieldset legend {
    width: 100%;
    text-align: center;
}

.subscription-fieldset label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;

    cursor: pointer;
    user-select: none;

    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.subscription-fieldset label:hover {
    border-color: #aaa;
}

/* Checked styling */
.subscription-fieldset label:has(input:checked) {
    background-color: #f3fdf7;
    border-color: #467B5D;
}

.subscription-fieldset input[type="checkbox"] {
    margin: 0;
    accent-color: #467B5D;
}


.subscribe a {
	color: #467B5D;
	text-decoration: underline;
}

.subscribe .unsubscribe-form {
	border-top: 1px solid #e5e5e5;
	padding-top: 5px;
}

.unsubscribe-btn {
	background: none;
	color: #888;
	font-size: 14px;
	font-family: inherit;
	text-decoration: underline;
	padding: 0;
	cursor: pointer;
}

.unsubscribe-btn:hover {
	color: #444;
}

#blog-home .subscribe {
	margin: 0;
	margin: auto;
}

#blog-home .newsletter {
	margin-top: 30px;
	padding-bottom: 60px;
}

@media (max-width: 768px) {
	.newsletter .content-wrapper {
		padding: 0 0px;
	}

	#blog-home .newsletter {
		padding-bottom: 0;
	}

	.subscribe {
		padding: 5%;
	}

	.subscribe h2 {
		font-size: 23px;
	}
	.subscribe p {
		font-size: 15px;
	}
}

@media (max-width: 600px) {

	.newsletter {
		padding: 0;
		border-top: 20px solid #467B5D;
		border-bottom: 5px solid #467B5D;
	}

	#blog-home .newsletter {
		margin-top: 30px;
	}

	.subscribe {
		padding: 5%;
		padding-top: 40px;
		padding-bottom: 35px;
		max-width: unset;
	}
}

.comments-section {
	margin-bottom: 60px;
}

.comments-section h2 {
	font-weight: 700;
	font-size: 24px;
}

.comments ul  {
	padding: 0px;
}

.disclaimer {
	font-size: 14px;
}

button:hover {
	cursor: pointer;
}

.sub {
  position: relative;
	margin-left: 15px;	  
}

.sub p span {
	color: green;
	font-weight: 700;
}

.sub::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #467B5D;
    left: -15px;
}

.comments ul li {
	margin-top: 5px;
	padding: 5px 0px;
}

.comments ul li .info {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
}

.comments ul li .info p {
	font-weight: 700;
	margin: 0px;
}

.comments p {
	margin: 0px 0px;
	font-size: 17px;
}

.comments .info time {
	margin: 0px;
	font-weight: 400;
	font-size: 14px;
}

.comments ul button {
  all: unset;           
  cursor: pointer;     
  color: inherit;     
  font: inherit; 
  color: green;
  font-size: 15px;
}

#make-comment {
	color: #467B5D;
	font-weight: 700;
	font-size: 17px;
	margin-top: 50px;
}

#comment-form {
	flex-direction: column;
	gap: 10px;
	margin: 15px 0px;
}

#comment-form input, #comment-form textarea {
	font-size: 17px;
}

#comment-form .button {
	margin-top: 5px;
	align-self: flex-start;
	padding: 12px 15px;
}

.display-none {
	display: none;
}

.display-flex {
	display: flex;
}

#reply_message {
	font-size: 17px;
	display: inline-block;
	margin-top: 10px;
	margin-bottom: 0px;
}

#reply_to a {
	display: inline-block;
	font-weight: 700;
	color: #467B5D;
}

.product-subscribe {
	margin-top: 40px;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.product-subscribe-form,
.product-subscribe .message-sent {
	margin-top: 20px;
}

.product-subscribe h2 {
	font-family: 'Mulish', sans-serif;
	font-weight: 700;
}

.product-subscribe-form {
	display: flex;
	gap: 12px;
	align-items: stretch;
}

.product-subscribe-form input {
	font-size: 17px;
	max-width: 350px;
	margin: 0;
	flex-grow: 1;
}

.item-for-sale .product-subscribe-form button {
	border-radius: 0;
	margin: 0;
	width: unset;
	padding-left: 35px;
	padding-right: 35px;
	outline: 3px solid #467B5D;
	outline-offset: -3px;
	font-weight: 700;
}

.subscribe-all {
	font-weight: 700;
	color: #3A6A4F;
}

.subscribe-buttons {
	display: flex;
	gap: 10px;
	max-width: 600px;
	margin-top: 15px;
}

.subscribe-buttons[hidden],
.subscribe-all[hidden],
button[hidden],
input[hidden] {
	display: none;
}

.item-for-sale .product-subscribe-form button {
		width: 150px;
}

@media (max-width: 600px) {
	.product-subscribe .message-sent {
		margin-top: 10px;
	}

	.product-subscribe-form {
		flex-direction: column;
	}

	.product-subscribe-form input {
		max-width: 100%;
	}

	.item-for-sale .product-subscribe-form button {
		width: 100%;
	}
}

.product-types {
	list-style: none;
	padding-left: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.product-types li {
	position: relative;
	padding-left: 18px;
	list-style-type: none;
}

.product-types li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.5em;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: 2px solid #467B5D;
}

.blog-post .product-types {
	font-size: 18px;
}

.main-video {
	aspect-ratio: 1339 / 1243;
	object-fit: cover;
}

.postage-info {
	border-top: 1px solid #e5e5e5;
	padding-top: 20px;
	margin-top: 10px;
}

.postage-info h2 {
	font-family: "Mulish", sans-serif;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	color: #777;
	margin-bottom: 12px;
}

.postage-info ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.postage-info ul li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	color: #333;
}

.postage-info ul li svg {
	color: #467B5D;
	flex-shrink: 0;
}
