/* Google Fonts - Professional Typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* Normalize */
:root {
	--sage-green: #9ca87d;
	--sage-green-dark: #7d8c64;
	--sage-green-darker: #14190f;
	--sage-green-light: #d1dcc1;
	--sage-green-pale: #edf2e3;
	--bg: linear-gradient(135deg, var(--sage-green-dark) 0%, var(--sage-green-dark) 100%);
	--bg-pastel: linear-gradient(135deg, var(--sage-green-pale) 0%, var(--sage-green-pale) 100%);
	--bg-dark: linear-gradient(135deg, var(--sage-green) 0%, var(--sage-green) 100%);
	--bg-light-green: linear-gradient(135deg, var(--sage-green-light) 0%, var(--sage-green-light) 100%);
	--text: #2d3319;
	--muted: #7d8c64;
	--card: #cfcfcf;
	--shadow: 0 2px 10px rgba(106, 124, 74, 0.12);
	--shadow-sm: 0 2px 8px rgba(106,124,74,0.10);
	--shadow-md: 0 2px 10px rgba(106, 124, 74, 0.15);
	--shadow-lg: 0 4px 16px rgba(106, 124, 74, 0.18);
	--shadow-xl: 0 8px 20px rgba(106,124,74,0.2);
	--spacing-md: 1rem;
	--spacing-lg: 1.5rem;
	--spacing-xl: 2rem;
	--spacing-container: 16px;
	--gray-50: #f3f4f2;
	--gray-100: #e9ebe6;
	--gray-200: #dee1da;
	--gray-700: #5a5f54;
	--gray-800: #4a4e45;
	--gray-offset: rgba(0, 0, 0, 0.03);
	--gray-border: rgba(0, 0, 0, 0.15);
	--gray-light: rgba(0, 0, 0, 0.4);
	--gray-mid: rgba(0, 0, 0, 0.7);
	--gray-dark: rgba(0, 0, 0, 0.9);
	--body-color: var(--gray-mid);
	--headline-color: var(--gray-dark);
	--accent-color: #0066f0;
	--body-font-family: Georgia, serif;
	--radius: 10px;
	--form-width: 343px;
}

* {
  box-sizing: border-box;
}

html {
	line-height: 1.15; /* 1 */
    -webkit-text-size-adjust: 100%; /* 2 */
}

body {
	margin: 0;
	font-family: var(--body-font-family);
	font-size: 16px;
	color: var(--body-color);
	-webkit-font-smoothing: antialiased;
}
  
main {
    display: block;
}

h1 {
  font-size: 27px;
  color: var(--headline-color);
}

h3 {
	color: var(--sage-green-darker);
}

h4 {
  font-weight: 500;
  font-size: 14px;
  color: var(--gray-light);
}

label {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
}

pre {
	font-family: monospace, monospace; /* 1 */
    font-size: 1em; /* 2 */
}

a {
	background-color: transparent;
}

abbr[title] {
	border-bottom: none; /* 1 */
    text-decoration: underline; /* 2 */
    text-decoration: underline dotted; /* 2 */
}

b,
strong {
	font-weight: bolder;
}

code,
kbd,
pre,
samp {
	font-family: "SF Mono", "IBM Plex Mono", "Menlo", monospace;
	font-size: 1rem;
}
  
small {
    font-size: 80%;
}
  
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
  
sub {
    bottom: -0.25em;
}
  
sup {
    top: -0.5em;
}
  
img {
    border-style: none;
}
  
button,
input,
optgroup,
select,
textarea {
    font-family: inherit; /* 1 */
    font-size: 100%; /* 1 */
    line-height: 1.15; /* 1 */
    margin: 0; /* 2 */
}
  
button,
input { /* 1 */
    overflow: visible;
}
  
button,
select { /* 1 */
    text-transform: none;
}
  
button, [type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}
  
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}
  
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}
  
fieldset {
    padding: 0.35em 0.75em 0.625em;
}
  
legend {
    box-sizing: border-box; /* 1 */
    color: inherit; /* 2 */
    display: table; /* 1 */
    max-width: 100%; /* 1 */
    padding: 0; /* 3 */
    white-space: normal; /* 1 */
}
  
progress {
    vertical-align: baseline;
}
  
textarea {
    overflow: auto;
}
  
[type="checkbox"],
[type="radio"] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
}
  
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}
  
[type="search"] {
    -webkit-appearance: textfield; /* 1 */
    outline-offset: -2px; /* 2 */
}
  
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
  
::-webkit-file-upload-button {
    -webkit-appearance: button; /* 1 */
    font: inherit; /* 2 */
}
  
details {
    display: block;
}
  
summary {
    display: list-item;
}
  
template {
    display: none;
}
  
[hidden] {
    display: none;
}

/* Global */
/* Inputs */
input[type="text"],
input[type="password"] {
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 5px 12px;
  height: 30px;
  width: 100%;
  transition: box-shadow 0.2s ease;
  background: white;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  color: #32325d;
}

input[type="text"]:focus,
input[type="password"]:focus,
button:focus,
.focused {
  box-shadow: 0 0 0 1px rgba(50, 151, 211, 0.3), 0 1px 1px 0 rgba(0, 0, 0, 0.07),
    0 0 0 4px rgba(50, 151, 211, 0.3);
  outline: none;
  z-index: 9;
}

input[type="text"]::placeholder,
input[type="password"]::placeholder {
  color: var(--gray-light);
}

button:active {
  transform: translateY(0px) scale(0.98);
  filter: brightness(0.9);
}

button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Form styling for custom order and others */
.form-group {
	margin-bottom: 1.2rem;
}

.form-control {
	width: 100%;
	padding: 0.55rem 0.7rem;
	border: 1px solid #ccc;
	border-radius: var(--radius);
	font-size: 1rem;
	font-family: inherit;
	box-sizing: border-box;
}

/* Product info pastel card */
.product-info-card {
	max-width: 600px;
	margin: 0 auto var(--spacing-xl) auto;
	background: var(--sage-green-pale);
	color: var(--sage-green-darker);
	border-radius: 8px;
	box-shadow: var(--shadow);
	padding: 2rem;
	box-sizing: border-box;
	font-family: 'Playfair Display', Georgia, serif;
	display: flex;
	flex-direction: column;
	gap: var(--spacing-md);
	align-items: center;
}

/* Unifies product images on the inventory page */
.inventory-product-img {
	display: block;
	width: 100%;
	max-width: 280px;
	height: auto;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	margin: 0 auto var(--spacing-md) auto;
	background: var(--sage-green-pale, #f6f8f3);
}

/* Unifies product image on the product detail page */
.product-img-container {
	display: flex;
	justify-content: center;
	margin: 0 auto 2rem auto;
}

/* Side-by-side image panel: main image + preview strip */
.product-image-panel {
	display: flex;
	gap: 0.75rem;
	justify-content: center;
	align-items: flex-start;
	margin: 0 auto 1rem auto;
}

.product-image-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem auto;
}

/* Product image card similar to other section cards */
.product-image-card { width:100%; margin:0; padding:10%; background: var(--sage-green-light); border-radius:8px; box-shadow: var(--shadow-sm); box-sizing:border-box; }

.product-title { color: sienna; margin: 0; text-align: center; }

.pricing-inner { text-align: center; }

/* Pricing header */
.section-header { display:block; text-align:center; font-weight:600; margin-bottom:8px; color:var(--sage-green-darker); letter-spacing:0.03em; }
.section-header h4 { margin:0; font-size:0.9rem; }

/* Add a horizontal rule after section headers */
.section-header::after {
	content: "";
	display: block;
	height: 1px;
	background: #eee;
	margin: 8px 0 12px 0;
}

.product-image-panel .main-product-image {
	flex: 0 0 auto;
}

.product-image-panel .product-detail-img {
	width: 500px;
	height: 500px;
}

.product-thumbnails.vertical {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	align-items: center;
}

.product-detail-img {
	display: block;
	width: 500px;
	height: 500px;
	object-fit: cover;
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	background: var(--sage-green-pale, #f6f8f3);
}

/* Responsive image sizing for smaller screens */
@media (max-width: 768px) {
	.product-detail-img,
	.product-image-panel .product-detail-img {
		width: 100%;
		height: auto;
		max-width: 400px;
	}
}

@media (max-width: 480px) {
	.product-detail-img,
	.product-image-panel .product-detail-img {
		max-width: 300px;
	}
}

/* Inventory page column divider */
.inventory-columns {
	align-items: stretch;
}

.inventory-divider {
	width: 18px;
	display: flex;
	align-self: stretch;
	justify-content: center;
}

.inventory-divider-line {
	width: 2px;
	height: 100%;
	border-radius: var(--radius);
	background: linear-gradient(to bottom, var(--sage-green) 0%, var(--sage-green) 100%);
	margin: auto;
	box-shadow: 0 0 0 1px rgba(255,255,255,0.15) inset;
}

@media (max-width: 900px) {
	.inventory-divider { display: none; }
}

/* About page styles (scoped to avoid overriding universal site styles) */
.about-bios-section, .news-container {
	--main-bg: var(--bg-pastel);
	--amber-green: #7d8c64;
	--maxwell-green: #626d50;
	--divider: linear-gradient(to bottom, rgba(98,109,80,0.85) 0%, rgba(98,109,80,0.85) 100%);
	--tile-gap: 1.3rem;
	max-width: 1000px;
	margin: 0 auto var(--spacing-container) auto;
	padding: var(--spacing-container) 1rem;
	background: var(--main-bg);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	font-family: 'Playfair Display', Georgia, serif;
}

/* Specific spacing for News container: 16px bottom margin */
.news-container { margin: 0 auto var(--spacing-container) auto; }

/* Justify all paragraph text within the About page (last line centered) */
.about-bios-section p { text-align: justify; -moz-text-align-last: center; text-align-last: center; }

/* About intro section with gradient background */
.about-intro-gradient {
	text-align: center;
	background: var(--bg-dark);
	padding: var(--spacing-xl) var(--spacing-lg);
	border-radius: var(--radius);
	box-shadow: var(--shadow-md);
	max-width: 650px;
	margin: 0 auto var(--spacing-container) auto;
}

.about-intro-gradient h2 {
	color: var(--sage-green-pale);
	font-size: 2.2rem;
	letter-spacing: 1.5px;
	margin-bottom: 0.8rem;
}

.about-bios-section .about-intro-gradient p {
	color: whitesmoke;
	text-align: center;
}

.about-intro h1 {
	font-size: 2.8rem;
	letter-spacing: 1.5px;
	margin-bottom: 0.5rem;
}

.about-intro p { max-width: 600px; margin: 0 auto; text-align: center; line-height: 1.7; color: #444; }

.about-subtitle { color: #555; font-size: 1.2rem; }

.about-bios {
	display: grid;
	grid-template-columns: 1fr 18px 1fr;
	align-items: stretch;
	gap: 2rem;
}

@media (max-width: 900px) {
	.about-bios { grid-template-columns: 1fr; }
	.about-divider { display: none; }
}

.about-divider {
	width: 18px;
	display: flex;
	align-self: stretch;
	justify-content: center;
}

.about-divider-line {
	width: 2px;
	height: 100%;
	border-radius: var(--radius);
	background: var(--divider);
	margin: auto;
	box-shadow: 0 0 0 1px rgba(255,255,255,0.08) inset;
}

.bio-col { display: flex; flex-direction: column; gap: var(--tile-gap); }

.about-tile {
	border-radius: var(--radius);
	color: #fff;
	box-shadow: var(--shadow-sm);
	padding: 1.15rem var(--spacing-md);
}

.bio-amber .about-tile { background: var(--amber-green); }

.bio-maxwell .about-tile { background: var(--maxwell-green); }

.about-tile h2, .about-tile h3 { margin: 0 0 0.5rem 0; color: #fff; font-weight: 700; }

.get-in-touch {
	max-width: 1000px;
	margin: 0 auto var(--spacing-container) auto;
	padding: 3rem var(--spacing-lg);
	background: var(--bg-dark);
	border-radius: var(--radius);
	box-shadow: var(--shadow-md);
	text-align: center;
	color: #fff;
}

.get-in-touch h2 {
	font-size: 2.2rem;
	margin-bottom: 0.8rem;
	letter-spacing: 0.5px;
}

.about-cta-text { 
	font-size: 1.1rem; 
	line-height: 1.7; 
	margin-bottom: 1.5rem;
	color: var(--sage-green-pale);
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.about-signoff { font-style: italic; margin-bottom: 0; }

.cta-buttons { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; margin-top: 1rem; }

.about-bios-section footer { margin-top: 2.5rem; text-align: center; }


/* Light structural defaults (safe additions) */
html {
	min-height: 100vh;
}

body { 
	color: var(--text); 
	background: var(--sage-green-dark);
	background: var(--bg); 
	font-family: 'Playfair Display', Georgia, serif; 
	line-height: 1.6; 
	padding: 1rem;
	min-height: 100vh;
}

@media (max-width: 768px) {
	body { padding: 0.5rem; }
}

@media (max-width: 480px) {
	body { padding: 0.25rem; }
}
h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.3; color: var(--sage-green-darker); margin-top: 2px; margin-bottom: 4px; }
a { color: var(--sage-green-dark); text-decoration: none; font-family: 'Playfair Display', Georgia, serif; }
a:hover { text-decoration: underline; color: var(--sage-green); }

/* Buttons (shared) */
.btn-primary, .btn-danger {
  display: inline-block;
  padding: 0.6rem 1rem;
	border-radius: var(--radius);
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.3s ease, background 0.3s ease, filter 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}
button:disabled,
.btn-primary:disabled,
.btn-danger:disabled {
	cursor: default;
}

/* btn-primary now uses the light button look */
.btn-primary { background: #fff; color: var(--sage-green-dark); border-color: var(--sage-green); }
.btn-primary:hover { 
	transform: scale(1.05);
	background: var(--sage-green-pale);
	color: var(--sage-green-darker);
	box-shadow: var(--shadow);
	text-decoration: none;
}

/* Keep existing variants on btn-primary */
.btn-primary.btn-remove-light { background:#f8d7da; color:#721c24; }
.btn-primary.btn-remove-light:hover { background:#f5c6cb; }
.btn-danger { background: #d9534f; color: #fff; border-color: #c9302c; }
.btn-danger:hover {
  background: #c9302c;
  transform: scale(1.05);
  text-decoration: none;
}

/* Button grid and action row styles for product page */
.product-info-card .button-card { width:100%; max-width:600px; margin:0 auto; padding:10%; box-sizing:border-box; background: var(--sage-green-light); border-radius:8px; box-shadow: var(--shadow-sm); }
.product-info-card .button-card .button-grid { width:100%; margin:0; padding:0; display:flex; flex-direction:column; gap:0.75rem; box-sizing:border-box; }
.product-info-card .button-card .button-grid .action-pair { padding:0.75rem; box-sizing:border-box; }
.product-info-card .button-card .button-grid .action-pair-body { display:flex; gap:0.75rem; align-items:center; }
.product-info-card .button-card .button-grid .action-pair-body > * { flex:1; }
.product-info-card .button-card .button-grid .action-pair-body > div,
.product-info-card .button-card .button-grid .action-pair-body > form {
	display:flex;
	align-items:center;
	justify-content:center;
	width:100%;
}
.product-info-card .button-card .button-grid .action-pair-body > div > form,
.product-info-card .button-card .button-grid .action-pair-body > div > a,
.product-info-card .button-card .button-grid .action-pair-body > a {
	width:100%;
}
.product-info-card .button-card .button-grid .btn-primary,
.product-info-card .button-card .button-grid a { height:60px; box-sizing:border-box; }
.product-info-card .button-card .button-grid .btn-primary:disabled,
.product-info-card .button-card .button-grid button[disabled].btn-primary {
	background: #f5f5f5;
	color: #888;
	cursor: default;
}
.product-info-card .button-card .button-grid .buy-full { width:100%; display:block; height:60px; }
.product-description, .product-pricing, .product-specs, .product-fulfillment { margin:0; padding:10%; background: var(--sage-green-light); border-radius:8px; box-shadow: var(--shadow-sm); box-sizing:border-box; }

/* Description: justify text for paragraph content */
.product-description p { margin:0; line-height:1.6; color:#333; text-align:justify; -moz-text-align-last:center; text-align-last:center; }

/* Fulfillment: match description text treatment */
.product-fulfillment { width:100%; display:block; }
.product-fulfillment p { margin:0; line-height:1.6; color:#333; text-align:justify; -moz-text-align-last:center; text-align-last:center; }

/* Pricing: center all text */
.product-pricing { text-align:center; }

/* Specs: ensure it spans full width of the parent container */
.product-specs { width:100%; display:block; }

/* Thumbnails: fixed 60x60 and span the container */
.product-thumbnails { display:flex; gap:0.5rem; justify-content:space-between; width:100%; }
.product-thumbnails img { width:60px; height:60px; object-fit:cover; border-radius:6px; box-shadow: var(--shadow-sm); }

/* Header - Logo spans large portion */
.site-header { max-width: 1000px; margin: 0 auto; background: var(--sage-green-light); padding: var(--spacing-xl) 1rem; margin-bottom: 1rem; border-radius: var(--radius); height: 85px; max-height: 85px; display: flex; align-items: center; }
.header-table { width: 100%; border-collapse: collapse; }
.header-banner { width: 10%; background: transparent; }
.header-center-cell { text-align: center; width: 80%; }
.header-title {
	font-size: clamp(2rem, 7vw, 4rem);
	color: var(--sage-green-darker);
	margin: 0;
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: 2px;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
@media (max-width: 768px) {
	.header-title { font-size: 2.5rem; }
	.header-banner { width: 5%; }
	.header-center-cell { width: 90%; }
}

/* Navbar Section */
.navbar-section { max-width: 1000px; margin: 0 auto var(--spacing-container) auto; }
.navbar-section nav { background: var(--sage-green-light); box-shadow: var(--shadow); border-radius: var(--radius); overflow: hidden; height: 85px; max-height: 85px; display: flex; align-items: center; }
.navbar-section nav ul { list-style: none; margin: 0; padding: 0.8rem 0.8rem; display: flex; flex-wrap: wrap; gap: 0.4rem 0.8rem; justify-content: center; width: 100%; }
.navbar-section nav li { margin: 0; }
.navbar-section nav a { color: var(--sage-green-darker); padding: 0.45rem 0.8rem; border-radius: var(--radius); font-size: 1rem; white-space: nowrap; }
.navbar-section nav a:hover, .navbar-section nav a:active, .navbar-section nav a.active { background: rgba(181, 201, 154, 0.35); text-decoration: none; color: var(--sage-green-darker); }
.navbar-section nav a.active { border-bottom: 2px solid rgba(20,25,15,0.6); }

/* Mobile navbar optimization */
@media (max-width: 768px) {
	.navbar-section nav { height: auto; max-height: none; min-height: 60px; padding: 0.5rem 0.25rem; }
	.navbar-section nav ul { padding: 0.5rem 0.25rem; gap: 0.35rem 0.5rem; }
	.navbar-section nav a { padding: 0.4rem 0.6rem; font-size: 0.9rem; }
}

@media (max-width: 480px) {
	.navbar-section nav { padding: 0.4rem 0.2rem; }
	.navbar-section nav ul { padding: 0.4rem 0.2rem; gap: 0.3rem 0.4rem; }
	.navbar-section nav a { padding: 0.35rem 0.5rem; font-size: 0.85rem; }
}

/* Content Section (unified styling for hero, content-statement, and other sections) */
.content-section { 
	max-width: 1000px; 
	margin: 0 auto var(--spacing-container) auto; 
	padding: 2.25rem 2rem; /* fixed gutters so horizontal padding doesn't scale */
	background: var(--sage-green-light); 
	border-radius: var(--radius);
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	color: var(--sage-green-darker);
}
.content-section h1 { 
	font-size: 2.4rem; 
	margin-bottom: 0.5rem;
	color: var(--sage-green-darker);
	text-align: center;
}
.content-section h2 {
	color: var(--sage-green-darker);
	text-align: center;
}
.content-section h3 {
	color: var(--sage-green-darker);
    text-align: center;
	margin-top: 1.25rem;
}
.content-section p { 
	color: var(--sage-green-darker); 
	margin-bottom: 1rem;
	line-height: 1.6;
	text-align: justify;
	-moz-text-align-last: center;
	text-align-last: center;
}
.content-section a.btn-primary,
.content-section a.btn-primary {
	margin: 0.5rem 0.5rem;
}
.content-section > div {
	text-align: center;
}
.content-section ul {
	list-style: none;
	padding-left: 0;
	text-align: center;
}
.content-section li {
	text-align: justify;
	-moz-text-align-last: center;
	text-align-last: center;
}

@media (max-width: 768px) {
	.content-section { padding: 1.75rem 1.25rem; }
	.content-section h1 { font-size: 1.8rem; line-height: 1.3; }
	.content-section p { font-size: 0.95rem; padding: 0 0.5rem; }
	.content-section .btn-primary { display: block; width: 90%; max-width: 300px; margin: 0.5rem auto; text-align: center; }
}

@media (max-width: 480px) {
	.content-section { padding: 1.25rem 0.75rem; }
	.content-section h1 { font-size: 1.5rem; }
	.content-section p { font-size: 0.9rem; line-height: 1.5; }
}

/* Featured products (index) */
.featured-products { max-width: 1000px; margin: 0 auto var(--spacing-container) auto; padding: var(--spacing-xl) 1rem; background: var(--bg-light-green); border-radius: var(--radius); box-shadow: var(--shadow); }
.featured-products h2 { text-align: center; margin-bottom: 1rem; }
.featured-products p { text-align: justify; -moz-text-align-last:center; text-align-last:center; }
.product-card p { text-align: justify; -moz-text-align-last:center; text-align-last:center; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }

@media (max-width: 768px) {
	.featured-products { padding: 1.5rem 0.75rem; }
	.featured-products h2 { font-size: 1.6rem; }
	.product-grid { grid-template-columns: 1fr; gap: 1.25rem; max-width: 400px; margin: 0 auto; }
}

@media (max-width: 480px) {
	.featured-products { padding: 1.25rem 0.5rem; }
	.featured-products h2 { font-size: 1.4rem; }
}

/* About block teaser (index) */
.about-section { max-width: 1000px; margin: 0 auto var(--spacing-container) auto; padding: var(--spacing-xl) 1rem; background: var(--bg-dark); color: #fff; border-radius: var(--radius); }
.about-columns { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; max-width: 1000px; margin: 0 auto; }
.about-column { padding: 1rem; border-radius: var(--radius); box-shadow: var(--shadow); min-height: 160px; display: flex; flex-direction: column; }
.about-column-amber { background: var(--sage-green-pale); color: var(--sage-green-darker); }
.about-column-max { background: var(--sage-green-pale); color: var(--sage-green-darker); }
.about-column a { color: var(--sage-green-dark); }
.about-column a:hover { color: var(--sage-green-darker); }
.about-column a.btn-primary { margin-top: auto; }

/* Ensure navbar and header text use --sage-green-darker for contrast */
.site-header, .site-header a { color: var(--sage-green-darker); }
.about-column p { text-align: justify; -moz-text-align-last:center; text-align-last:center; }

@media (max-width: 768px) {
	.about-section { padding: 1.5rem 0.75rem; }
	.about-columns { grid-template-columns: 1fr; gap: 1.25rem; }
	.about-column { padding: 1.25rem 1rem; min-height: auto; }
	.about-column h2 { font-size: 1.4rem; }
	.about-column p { font-size: 0.95rem; }
}

@media (max-width: 480px) {
	.about-section { padding: 1.25rem 0.5rem; }
	.about-column h2 { font-size: 1.3rem; }
}

/* Values (index) */
.values { max-width: 1000px; margin: 0 auto var(--spacing-container) auto; padding: var(--spacing-xl) 1rem; text-align: center; background: var(--bg-pastel); border-radius: var(--radius); box-shadow: var(--shadow); }
.values h2 { margin-bottom: 0.5rem; }
.values p { color: var(--muted); text-align: justify; -moz-text-align-last:center; text-align-last:center; }

@media (max-width: 768px) {
	.values { padding: 1.5rem 0.75rem; }
	.values h2 { font-size: 1.5rem; }
	.values p { font-size: 0.95rem; }
}

@media (max-width: 480px) {
	.values { padding: 1.25rem 0.5rem; }
	.values h2 { font-size: 1.3rem; }
	.values p { font-size: 0.9rem; }
}

/* Newsletter (index) */
.newsletter { max-width: 1000px; margin: 0 auto var(--spacing-container) auto; background: var(--bg-light-green); padding: var(--spacing-xl) 1rem; color: #fff; border-radius: var(--radius); }
.newsletter h2 { text-align: center; color: #fff; }
.newsletter-form { display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; max-width: 700px; margin: 0.8rem auto; }
.newsletter-form input[type="email"] { padding: 0.6rem 0.8rem; border-radius: var(--radius); border: 1px solid var(--sage-green-light); min-width: 260px; }

@media (max-width: 768px) {
	.newsletter { padding: 1.5rem 0.75rem; }
	.newsletter h2 { font-size: 1.5rem; }
	.newsletter-form { flex-direction: column; align-items: center; }
	.newsletter-form input[type="email"] { width: 90%; max-width: 350px; min-width: auto; }
	.newsletter-form button { width: 90%; max-width: 350px; }
}

@media (max-width: 480px) {
	.newsletter { padding: 1.25rem 0.5rem; }
	.newsletter h2 { font-size: 1.3rem; }
}

/* Flash messages */
.welcome-message, .newsletter-message { max-width: 900px; padding: 10px; border-radius: 10px; text-align: center; }
.welcome-message { background: #dff0d8; margin: 0 auto 16px auto; }
.newsletter-message { background: #f2dede; color: #7f1d1d; }

/* Directories */
.directories { max-width: 1000px; margin: 0 auto var(--spacing-container) auto; padding: var(--spacing-xl) 1rem; background: var(--gray-50); border-radius: var(--radius); box-shadow: var(--shadow); }
.directories header { text-align: center; margin-bottom: 1.2rem; }
.directories h1 { font-size: 2.2rem; }
.directories header p { color: #666; margin: 0; }
.directories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }

@media (max-width: 768px) {
	.directories { padding: 1.5rem 0.75rem; }
	.directories h1 { font-size: 1.7rem; }
	.directories-grid { grid-template-columns: 1fr; gap: 1rem; }
}

@media (max-width: 480px) {
	.directories { padding: 1.25rem 0.5rem; }
	.directories h1 { font-size: 1.5rem; }
}
.directory-tile { background: var(--sage-green-dark); color: #fff; border-radius: var(--radius); padding: 1rem; box-shadow: 0 1px 6px rgba(0,0,0,0.08); }
.directory-tile h3 { margin-top: 0; color: #fff; }
.directory-tile a { color: #fff; text-decoration: underline; }
.directory-tile a:hover { color: var(--sage-green-light); text-decoration-color: var(--sage-green-light); }
.directory-tile a:focus { outline: 2px solid var(--sage-green-light); outline-offset: 2px; border-radius: var(--radius); }

/* News & Events (merged into .news-container) */
.news-container h1 { text-align: center; font-size: 2.3rem; letter-spacing: 1.2px; }

/* Inventory */
.static-size { width: 100%; max-width: 350px; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
table { width: 100%; border-collapse: collapse; }
td, th { padding-top: 12px; padding-bottom: 12px; text-align: center; }
hr { border: none; height: 3px; background: #e0e0e0; }
button { background: var(--brand-green); color: #fff; border: none; padding: 0.5rem 0.9rem; border-radius: var(--radius); cursor: pointer; }
button:hover { filter: brightness(0.95); }

.inventory-product-tile {
    background: var(--bg-pastel);
    border-radius: var(--radius);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.inventory-product-tile:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Forms (login, RSVP, newsletter) */
form label { font-weight: 600; }
.errors { background: #ffebee; border: 1px solid #ffcdd2; color: #b71c1c; padding: 0.6rem 0.8rem; border-radius: var(--radius); margin: 0.6rem 0; }

/* Footer Section */
.footer-section { max-width: 1000px; margin: 0 auto; background: var(--sage-green-light); border-radius: var(--radius); }
.footer-section footer { text-align: center; }
.footer-section .footer-nav { display: grid; gap: 1rem; }
.footer-section .footer-nav table { width: 100%; }
.footer-section .footer-nav td { vertical-align: top; padding: 0.5rem; }
.footer-section .footer-nav ul {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.4rem;
	list-style: none;
	margin: 0;
	padding: 0.2rem 0.8rem;
}

.footer-section .footer-nav li {
	display: block;
	color: var(--sage-green-darker);
	font-size: 1rem;
}

.footer-section .footer-nav a {
	color: var(--sage-green-darker);
	padding: 0.45rem 0.8rem;
	border-radius: var(--radius);
	font-size: 1rem;
	white-space: nowrap;
	text-decoration: none;
	display: inline-block;
	font-family: 'Playfair Display', Georgia, serif;
}

.footer-section .footer-nav a:hover,
.footer-section .footer-nav a:active {
	background: rgba(181, 201, 154, 0.35);
	text-decoration: none;
	color: var(--sage-green-darker);
}
.footer-section .footer-nav a.active {
	background: rgba(181, 201, 154, 0.35);
	text-decoration: none;
	color: var(--sage-green-darker);
	border-bottom: 2px solid rgba(20,25,15,0.6);
}

@media (max-width: 768px) {
	.footer-section { padding: 0.5rem; }
	.footer-section .footer-nav table {margin: 0 auto; }
	.footer-section .footer-nav tr { display: block; }
	.footer-section .footer-nav td { display: flex; justify-content: center; width: 100%; padding: 0.5rem 0; }
	.footer-section .footer-nav ul { padding: 0.5rem 0.5rem; gap: 0.5rem; margin: 0; max-width: 300px; }
	.footer-section .footer-nav li { font-size: 0.95rem; text-align: center; }
	.footer-section .footer-nav td[colspan] { padding-top: 1.5rem; font-size: 0.85rem; display: block; text-align: center; color: var(--sage-green-darker); }
}

@media (max-width: 480px) {
	.footer-section { padding: 0.25rem; }
	.footer-section .footer-nav td { display: flex; justify-content: center; }
	.footer-section .footer-nav ul { padding: 0.4rem 0.4rem; gap: 0.45rem; max-width: 250px; }
	.footer-section .footer-nav li { font-size: 0.9rem; }
	.footer-section .footer-nav td[colspan] { font-size: 0.8rem; padding-top: 1.25rem; display: block; text-align: center; }
}

.footer-light ul, .footer-light li, .footer-light {
	color: var(--sage-green-darker);
}

.footer-light a {
	color: var(--sage-green-darker);
	opacity: 1;
	display: inline-block;
	padding: 0.25rem 0.4rem;
	border-radius: var(--radius);
}

.footer-light a:hover,
.footer-light a:active {
	background: rgba(181, 201, 154, 0.35);
	text-decoration: none;
	color: var(--sage-green-darker);
}
.footer-light a.active {
	background: rgba(181, 201, 154, 0.35);
	color: var(--sage-green-darker);
	border-bottom: 2px solid rgba(20,25,15,0.6);
}

/* Product page thumbnail row beneath main image */
.product-thumbnails {
	display: flex;
	gap: 0.5rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 0.75rem;
}

.product-thumbnail {
	width: 50px;
	height: 50px;
	object-fit: cover;
	border-radius: var(--radius);
	cursor: pointer;
	transition: opacity 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.product-thumbnail:hover { opacity: 0.85; }

/* ================================
   ADMINISTRATION PANEL STYLES
   (Moved to bottom - not currently in use)
   ================================ */

.product-image-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem;
	background: rgba(255,255,255,0.8);
	border-radius: var(--radius);
	box-shadow: 0 2px 6px rgba(0,0,0,0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	padding-bottom: 0.75rem;
	justify-content: space-between;
	min-height: 240px;
}

.product-image-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.product-image-thumb {
	width: 100%;
	height: 120px;
	object-fit: cover;
	border-radius: var(--radius);
	border: 1px solid #ddd;
}

.product-image-thumb.primary {
	width: 250px;
	height: 200px;
	object-fit: cover;
}

.image-url-text {
	font-size: 0.75rem;
	color: #666;
	word-break: break-all;
	text-align: center;
	max-width: 100%;
	overflow: visible;
	white-space: normal;
	display: block;
	flex: 1;
	margin-bottom: 0.5rem;
}

.btn-remove-img {
	padding: 0.5rem 1rem;
	background: #d9534f;
	color: white;
	border: none;
	border-radius: var(--radius);
	cursor: pointer;
	font-size: 0.85rem;
	width: 100%;
	font-weight: 600;
	margin-top: auto;
}

.btn-remove-img:hover {
	background: #c9302c;
}

.add-image-form {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-top: auto;
	padding-top: 1rem;
}

.add-image-input {
	width: 100%;
	padding: 0.6rem;
	border: 1px solid #ccc;
	border-radius: var(--radius);
	font-size: 0.95rem;
	box-sizing: border-box;
}

.btn-add-img {
	width: 100%;
	padding: 0.6rem 1.2rem;
	background: var(--sage-green);
	color: var(--sage-green-darker);
	border: none;
	border-radius: var(--radius);
	cursor: pointer;
	font-weight: 600;
}

.btn-add-img:hover {
	background: #98b86e;
}

/* Product Grid Structure for Admin Panel */
#products-view {
	padding-top: 1rem;
}

#products-view > .product-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	justify-content: center;
	margin-top: 1rem;
	margin-left: auto;
	margin-right: auto;
}

/* Ensure admin product cards form three columns on wide screens and center the last row */
#products-view .product-card {
	width: 300px;
}

/* Product Cards in Admin Grid */
.product-card {
	background: var(--sage-green-pale);
	color: var(--sage-green-darker);
	padding: 1.5rem;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	display: flex;
	flex-direction: column;
}

.product-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: var(--radius);
}

.product-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-xl);
}

.product-card h3 {
	margin: 0 0 0.5rem 0;
	text-align: center;
}

.product-card p {
	text-align: center;
	margin-bottom: 1rem;
	color: var(--sage-green-darker);
	margin: 0 0 0.6rem 0;
}

/* Index page: product descriptions should be justified, with centered last line */
.featured-products .product-card p {
	text-align: justify;
	-moz-text-align-last: center;
	text-align-last: center;
	color: var(--sage-green-darker);
}

.product-card .btn-primary,
.product-card .btn-primary {
	align-self: stretch;
	display: block;
	width: 100%;
	text-align: center;
}

/* Admin product card responsive */
@media (max-width: 768px) {
	.product-card { padding: 1.25rem 1rem; }
	.product-card img { height: 250px; }
	.product-card h3 { font-size: 1.3rem; }
	.product-card p { font-size: 0.95rem; }
}

@media (max-width: 480px) {
	.product-card { padding: 1rem 0.75rem; }
	.product-card img { height: 220px; }
	.product-card h3 { font-size: 1.2rem; }
	.product-card p { font-size: 0.9rem; }
}

/* Image List - Horizontal scrollable within each Product Card */
#image-list-prod_QWcyGLbbldIVds,
#image-list-prod_QWcx3z5UyPFgFq,
#image-list-prod_QWcxEW8CpH8XEB,
[id^="image-list-"] {
	display: flex;
	flex-direction: row;
	gap: 0.75rem;
	margin: 1rem 0;
	overflow-x: auto;
	overflow-y: hidden;
	padding-bottom: 0.5rem;
}

/* Make image items fixed width for horizontal scroll */
[id^="image-list-"] .product-image-item {
	flex: 0 0 140px;
	width: 140px;
}

.alert {
	padding: 0.75rem 1rem;
	border-radius: var(--radius);
	margin-bottom: 1rem;
}

.alert-success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.alert-error {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

.account-tabs {
	display: flex;
	gap: 0;
	border-bottom: 2px solid var(--sage-green);
	margin-bottom: 1.5rem;
}

.account-tab {
	flex: 1;
	padding: 0.75rem 1.5rem;
	background: transparent;
	border: none;
	color: var(--sage-green-darker);
	cursor: pointer;
	font-size: 1rem;
	font-weight: 600;
	text-align: center;
	border-bottom: 3px solid transparent;
	transition: all 0.2s;
}

.account-tab:hover {
	background: rgba(106, 124, 74, 0.05);
}

.account-tab.active {
	color: var(--sage-green-darker);
	border-bottom-color: var(--sage-green-darker);
}

.account-view {
	display: none;
	width: 100%;
}

.account-view.active {
	display: block;
	width: 100%;
}

.account-section-pill {
	background: var(--sage-green-pale);
	color: var(--sage-green-darker);
	padding: 0.35rem 1rem;
	border-radius: 16px;
	font-size: 1.25rem;
	font-weight: 600;
	display: inline-block;
}

/* Account page tiles: enforce consistent height */
.order-tile,
.wishlist-tile,
.cart-tile {
	min-height: 180px;
}

/* Account wishlist: make action buttons align cleanly */
.wishlist-actions a.btn-primary,
.wishlist-actions button.btn-primary {
	display: block;
	width: 100%;
	text-align: center;
	box-sizing: border-box;
}

.wishlist-actions form {
	width: 100%;
}

/* Account > Update Info: center form labels */
.account-update-info .form-group label {
	display: block;
	text-align: center;
}

/* Security > Change Password: center form labels */
.account-security-change-password .form-group label {
	display: block;
	text-align: center;
}

/* Footer page content sections */
.content-section--card {
	max-width: 1000px;
	margin: 0 auto 16px auto;
	padding: 2rem;
	box-shadow: 0 2px 10px rgba(106,124,74,0.10);
}

.content-section--card-sm {
	padding: 1.25rem;
	box-shadow: 0 1px 6px rgba(106,124,74,0.08);
}
