@import url("./widgets/featured-box.css");
@import url("./widgets/instagram.css");

/* Ghost */
.kg-width-wide {
    color: currentColor;
}

.kg-width-full {
    color: currentColor;
}

.snipcart-modal__container {
    z-index: 50000000;
}

/* All */

:root {
    --pc-bg: #ffffff;
    --pc-foreground: #0f1724;
    --pc-muted: #6b7280;
    --pc-accent: #b45309;
    --pc-accent-2: #d97706;
    --pc-radius: 12px;
    --pc-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    --pc-gap: 12px;
    --pc-width: 320px;

    /* Modern color palette: warm earth tones with cream background */
    --ghost-accent-color: #b8860b;
    --primary-color: #b8860b;
    --secondary-color: #d4af37;
    --accent-color: #d97706;
    --dark-bg: #faf8f6;
    --light-text: #2d2d2d;
    --border-color: #e8dcc8;
    --success-color: #7c9c5f;

    /* Elegant serif typography with generous spacing */
    --font-serif: 'Georgia', 'Garamond', serif;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    --line-height: 1.6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
				scroll-behavior: smooth;
			}

body {
    font-family: var(--gh-font-body, var(--font-sans));
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: var(--line-height);
}

header {

    background-color: #fff;
				border-bottom: 2px solid var(--border-color);
				padding: 1.5rem 2rem;
				position: sticky;
				top: 0;
				z-index: 1000;
				box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.faq {
	counter-reset: faq;
}

details {
	width: 100dvw;
	max-width: 100%;
	counter-increment: faq;
}

details summary {
	cursor: pointer;
	padding-bottom: 1rem;
	font-weight: 700;
  border-bottom: thin solid currentColor;
}

details summary::marker {
	content: counter(faq) ". ";
}

details[open] summary,
details[open] summary::marker {
	color: var(--primary-color);
}

details[open] p {
	padding: 1rem 0;
}

.flexy {
	display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  max-width: 100%;
}


.flexy.column {
	flex-direction: column;
	flex-wrap: nowrap;
}

.faq-container {
	align-items: flex-start;
}

.membership-tiers article {
	border: thin solid currentColor;
}

.brand-container {
				max-width: 1400px;
				margin: 0 auto;
				display: flex;
				justify-content: space-between;
				align-items: center;
				flex-wrap: wrap;
				gap: 2rem;
			}

			header hgroup {
				flex: 1;
				min-width: 200px;
			}

            header h1 {
				font-family: var(--font-serif);
				font-size: 2.5rem;
				font-weight: 700;
				color: var(--primary-color);
				letter-spacing: -1px;
				margin-bottom: 0.25rem;
			}

			header p {
				font-size: 0.95rem;
				color: #888;
				font-style: italic;
				letter-spacing: 0.5px;
			}

			.logo-container {
				flex-shrink: 0;
			}

			.logo img {
				height: 60px;
				width: auto;
				object-fit: contain;
			}

			/* Improved navigation styling */
			nav.desktop-nav {
				flex: 1;
				flex: 1;
  display: flex;
  justify-content: space-between;
  align-content: center;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
			}

			nav.desktop-nav ul.nav {
				display: flex;
				list-style: none;
				gap: 2rem;
				align-items: center;
			}

			nav.desktop-nav a {
				text-decoration: none;
				color: var(--light-text);
				font-weight: 500;
				font-size: 0.95rem;
				transition: color 0.3s ease;
				border-bottom: 2px solid transparent;
				padding-bottom: 4px;
			}

			nav.desktop-nav a:hover,
			nav.desktop-nav .nav-current a {
				color: var(--primary-color);
				border-bottom-color: var(--primary-color);
			}

			.snipcart-summary {
				margin-left: .5rem;
				padding-left: .5rem;
				border-left: 1px solid var(--border-color);
			}

			.snipcart-summary a {
				display: inline-flex;
				align-items: baseline;
				align-items: center;
				gap: 0.5rem;
				padding: 0.5rem 1rem;
				background-color: var(--primary-color);
				color: white;
				border-radius: 4px;
				text-decoration: none;
				transition: background-color 0.3s ease;
			}

			.snipcart-summary a:hover {
				background-color: var(--accent-color);
				border-bottom: none;
			}

			.snipcart-items-count {
				margin-left: -5px;
				background: var(--ghost-accent-color);
				padding: 2px 6px;
				border-radius: 50%;
				border: solid var(--ghost-accent-color) 2px;
				color: white;
			}
            
/* Modern hero section with better typography */
			.hero {
				background: linear-gradient(135deg, #faf8f6 0%, #f5f0e8 100%);
				text-align: center;
				border-bottom: 3px solid var(--border-color);
			}

			.hero hgroup,
        .hero figure {
            flex: 1 0 45%;
        }

            .hero h2 {
				font-family: var(--font-serif);
				font-size: 3rem;
				font-weight: 700;
				color: var(--light-text);
				letter-spacing: -1px;
			}

			.hero p {
				font-size: 1.15rem;
				color: #666;
				max-width: 600px;
				line-height: 1.7;
			}

			.cta-button {
				display: inline-block;
				background-color: var(--primary-color);
				color: white;
				padding: 0.75rem 2rem;
				border: none;
				border-radius: 0;
				font-size: 1rem;
				font-weight: 600;
				cursor: pointer;
				text-decoration: none;
				transition: all 0.3s ease;
				letter-spacing: 0.5px;
				box-shadow: 0 4px 12px rgba(184, 134, 11, 0.2);
			}

			.cta-button:hover {
				background-color: var(--accent-color);
				transform: translateY(-2px);
				box-shadow: 0 6px 16px rgba(184, 134, 11, 0.3);
			}

			/* Section with refined spacing and typography */
			section {
				width: 1400px;
				max-width: 100%;
			}

			.shop-intro {
				text-align: center;
				margin-bottom: 3rem;
			}

			.shop-intro h2 {
				font-family: var(--font-serif);
				font-size: 2.5rem;
				color: var(--light-text);
				margin-bottom: 1rem;
				letter-spacing: -0.5px;
			}

			.shop-intro p {
				font-size: 1.1rem;
				color: #888;
				max-width: 700px;
				margin: 0 auto;
				line-height: 1.8;
			}

			/* Modern filter buttons with better styling */
			.filters {
				display: flex;
				justify-content: center;
				gap: 1rem;
				margin-bottom: 3rem;
				flex-wrap: wrap;
			}

			.filter-btn {
				padding: 0.65rem 1.5rem;
				border: 2px solid var(--border-color);
				background-color: white;
				color: var(--light-text);
				border-radius: 0;
				cursor: pointer;
				font-size: 0.95rem;
				font-weight: 500;
				transition: all 0.3s ease;
				letter-spacing: 0.3px;
			}

			.filter-btn:hover,
			.filter-btn.active {
				background-color: var(--primary-color);
				color: white;
				border-color: var(--primary-color);
			}

			/* Elegant product grid with better spacing */
			.products-grid {
				display: grid;
				grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
				gap: 2rem;
				margin-bottom: 3rem;
			}



@media (max-width: 768px) {
				.products-grid {
					grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
					gap: 1.5rem;
				}
			}

			@media (max-width: 480px) {
				.products-grid {
					grid-template-columns: 1fr;
				}
			}
            
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--gh-font-heading, var(--theme-font-heading));
}

h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #111827;
}

main {
    max-width: 1400px;
    margin: 3rem auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0;
}

a,
button:not(:disabled) {
    cursor: pointer;
}

button:disabled {
    cursor: not-allowed;
    background: slategrey;
}

ul[role="menu"] {
    list-style-type: none;
}

/* Enhanced product card styling with hover effects */
			.product-card {
				background-color: white;
				border: 1px solid var(--border-color);
				transition: all 0.3s ease;
				overflow: hidden;
				display: flex;
				flex-direction: column;
				height: 100%;
				box-shadow: 0 2px 8px rgba(0,0,0,0.05);
			}

			.product-card:hover {
				box-shadow: 0 8px 24px rgba(0,0,0,0.12);
				transform: translateY(-4px);
				border-color: var(--primary-color);
			}

			.pc-media {
				position: relative;
				overflow: hidden;
				background-color: #f5f0e8;
				aspect-ratio: 1;
			}

			.pc-media picture,
			.pc-image {
				width: 100%;
				height: 100%;
				display: block;
				object-fit: cover;
				transition: transform 0.4s ease;
			}

			.product-card:hover .pc-media picture,
			.product-card:hover .pc-image {
				transform: scale(1.05);
			}

			.pc-fav {
				position: absolute;
				top: 1rem;
				right: 1rem;
				background-color: rgba(255,255,255,0.95);
				border: none;
				width: 40px;
				height: 40px;
				border-radius: 50%;
				font-size: 1.5rem;
				cursor: pointer;
				transition: all 0.3s ease;
				display: flex;
				align-items: center;
				justify-content: center;
				box-shadow: 0 2px 8px rgba(0,0,0,0.1);
			}

			.pc-fav:hover {
				background-color: var(--primary-color);
				color: white;
				transform: scale(1.1);
			}

			.pc-body {
				padding: 1rem;
				display: flex;
				flex-direction: column;
				flex-grow: 1;
			}

			.pc-title {
				font-family: var(--font-serif);
				font-size: 1.3rem;
				font-weight: 600;
				color: var(--light-text);
				margin-bottom: 0.75rem;
				line-height: 1.3;
			}

			.pc-sub {
				font-size: 0.9rem;
				color: #888;
				margin-bottom: 1rem;
				line-height: 1.6;
				flex-grow: 1;
				display: -webkit-box;
				-webkit-line-clamp: 3;
				-webkit-box-orient: vertical;
				overflow: hidden;
			}

			.pc-meta {
				display: flex;
				justify-content: space-between;
				align-items: center;
				margin-bottom: 1rem;
				padding-bottom: 1rem;
				border-bottom: 1px solid var(--border-color);
			}

			.pc-price {
				display: flex;
				flex-direction: column;
			}

			.pc-price-current {
				font-family: var(--font-serif);
				font-size: 1.5rem;
				font-weight: 700;
				color: var(--primary-color);
			}

			.pc-price-unit {
				font-size: 0.75rem;
				color: #999;
				margin-top: 0.25rem;
			}

			.pc-rating {
				display: flex;
				gap: 0.2rem;
				font-size: 1.1rem;
			}

			.star {
				color: var(--secondary-color);
			}

			.star.dim {
				color: #ddd;
			}

			.pc-actions {
				display: flex;
				gap: .5rem;
				margin-bottom: 1rem;
			}

			.btn {
				flex: 1;
				padding: .25rem .5rem;
				border: 2px solid var(--primary-color);
				background-color: var(--primary-color);
				color: white;
				border-radius: 0;
				cursor: pointer;
				font-weight: 600;
				font-size: .75rem;
				transition: all 0.3s ease;
				letter-spacing: 0.3px;
			}

			.pc-add,
			.pc-learn {
				display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  gap: .25rem;
			}

			.pc-add {
				background-color: var(--primary-color);
			}

			.pc-add:hover {
				background-color: var(--accent-color);
				border-color: var(--accent-color);
				box-shadow: 0 4px 12px rgba(217, 119, 6, 0.2);
			}

			.pc-learn {
				background-color: white;
				color: var(--primary-color);
				border-color: var(--primary-color);
			}

			.pc-learn:hover {
				background-color: var(--primary-color);
				color: white;
			}

			.pc-tags {
				font-size: 0.85rem;
			}

			.pc-tags h4 {
				font-size: 0.75rem;
				text-transform: uppercase;
				color: #999;
				margin-bottom: 0.5rem;
				letter-spacing: 0.5px;
				font-weight: 600;
			}

			.pc-tags a {
				display: inline-block;
				background-color: #f5f0e8;
				color: var(--primary-color);
				padding: 0.3rem 0.7rem;
				margin-right: 0.5rem;
				margin-bottom: 0.5rem;
				text-decoration: none;
				border-radius: 3px;
				transition: all 0.2s ease;
				font-weight: 500;
			}

			.pc-tags a:hover {
				background-color: var(--primary-color);
				color: white;
			}

			/* Section dividers and footer styling */
			.section-divider {
				max-width: 1400px;
				margin: 2rem auto;
				height: 1px;
				background: linear-gradient(to right, transparent, var(--border-color), transparent);
			}

			/* Enhanced section headings */

			section {
					padding: 1rem;
				}

				section hgroup {
					padding: 1rem;
					text-align: center;
				}

			section hgroup h2 {
				font-family: var(--font-serif);
				font-size: 2rem;
				color: var(--primary-color);
			}

			section hgroup p {
				color: #888;
				font-size: 0.95rem;
			}

			/* Newsletter section styling */
			.newsletter-section {
				background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
				color: white;
				padding: 3rem 2rem;
				text-align: center;
				margin: 4rem auto;
				max-width: 600px;
				border-radius: 0;
				box-shadow: 0 8px 24px rgba(184, 134, 11, 0.3);
			}

			.newsletter-section h3 {
				font-family: var(--font-serif);
				font-size: 1.8rem;
				margin-bottom: 1rem;
				letter-spacing: -0.5px;
			}

			.newsletter-section p {
				margin-bottom: 1.5rem;
				font-size: 0.95rem;
				opacity: 0.95;
			}

			.newsletter-form {
				display: flex;
				gap: 0.5rem;
				margin-bottom: 1rem;
			}

			.newsletter-form input {
				flex: 1;
				padding: 0.75rem 1rem;
				border: none;
				border-radius: 0;
				font-size: 0.9rem;
				font-family: var(--font-sans);
			}

			.newsletter-form button {
				padding: 0.75rem 2rem;
				background-color: white;
				color: var(--primary-color);
				border: none;
				border-radius: 0;
				cursor: pointer;
				font-weight: 700;
				font-size: 0.9rem;
				transition: all 0.3s ease;
				letter-spacing: 0.3px;
			}

			.newsletter-form button:hover {
				background-color: #f5f0e8;
				transform: translateY(-1px);
			}

			.newsletter-privacy {
				font-size: 0.8rem;
				opacity: 0.85;
			}

			/* Enhanced footer styling */
			footer {
				background-color: #2d2d2d;
				color: #e0e0e0;
				padding: 3rem 2rem;
				margin-top: 4rem;
				  width: 100dvw;
  max-width: 100%;
			}

			.footer-content {
				width: inherit;
				max-width: 100%;
			}

			.footer-sections {
				display: grid;
				grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
				gap: 2rem;
				margin-bottom: 2rem;
			}

			.footer-section h3 {
				font-family: var(--font-serif);
				font-size: 1.2rem;
				margin-bottom: 1rem;
				color: var(--secondary-color);
				letter-spacing: -0.5px;
			}

			.footer-section ul {
				list-style: none;
				justify-content: flex-start;
			}

			.footer-section ul li {
				margin-bottom: 0.5rem;
			}

			.footer-section ul a {
				color: #bbb;
				text-decoration: none;
				transition: color 0.3s ease;
				font-size: 0.9rem;
			}

			.footer-section ul a:hover {
				color: var(--secondary-color);
			}

			.footer-divider {
				height: 1px;
				background: linear-gradient(to right, transparent, var(--border-color), transparent);
				margin: 2rem 0;
			}

			.footer-bottom {
				text-align: center;
				font-size: 0.85rem;
				color: #999;
			}

			.footer-bottom p {
				margin-bottom: 1rem;
				line-height: 1.6;
			}

			.footer-bottom a {
				color: var(--secondary-color);
				text-decoration: none;
				transition: color 0.3s ease;
				gap: 0;
			}

			.footer-bottom a:hover {
				color: white;
			}

			.footer-links-bottom {
				display: flex;
				justify-content: center;
				list-style: none;
				gap: 1.5rem;
				margin: 1.5rem 0;
				flex-wrap: wrap;
				font-size: 0.9rem;
			}

			.footer-links-bottom a {
				color: #bbb;
				text-decoration: none;
				transition: color 0.3s ease;
			}

			.footer-links-bottom a:hover {
				color: var(--secondary-color);
			}

			/* Responsive design improvements */
			@media (max-width: 768px) {
				.brand-container {
					flex-direction: column;
					gap: 1rem;
					text-align: center;
				}

				header h1 {
					font-size: 2rem;
				}

				header p {
					font-size: 0.85rem;
				}

				nav.desktop-nav ul.nav {
					gap: 1rem;
					flex-wrap: wrap;
					justify-content: center;
				}

				.hero h2 {
					font-size: 2rem;
				}

				.hero p {
					font-size: 1rem;
				}

				.shop-intro h2 {
					font-size: 1.8rem;
				}

				.newsletter-form {
					flex-direction: column;
				}

				.footer-sections {
					grid-template-columns: 1fr;
					gap: 1.5rem;
				}
			}

			/* Print and accessibility improvements */
			@media print {
				header, nav, .filters, .cta-button, .newsletter-section {
					display: none;
				}
			}

			@media (prefers-reduced-motion: reduce) {
				* {
					animation-duration: 0.01ms !important;
					animation-iteration-count: 1 !important;
					transition-duration: 0.01ms !important;
				}
			}