/* ============================================================
   Fruit Stand Page — styles_fruitstand.css

   Color reference (matches theme design tokens):
     Olive green:   #3d5227
     Mid olive:     #4e6a30
     Gold:          #c8961a
     Cream (bg):    #f7f2e8
     Cream (dark):  #ede7d5
     Text dark:     #2a2a1e
     Text light:    #5a5a48
   ============================================================ */


/* ------------------------------------------------------------
   Content area
   ------------------------------------------------------------ */

.fs-content {
	max-width: 860px;
	margin: 0 auto;
	padding: 56px 24px 72px;
}

.fs-intro {
	font-family: "Andada Pro", sans-serif;
	font-size: 1.15rem;
	color: #2a2a1e;
	line-height: 1.75;
	margin-bottom: 2.5em;
}


/* ------------------------------------------------------------
   Info row (hours + payment side by side)
   ------------------------------------------------------------ */

.fs-info-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 3em;
}

.fs-info-block {
	background-color: #ede7d5;
	border-top: 4px solid #c8961a;
	border-radius: 4px;
	padding: 24px 28px;
}

.fs-info-block h3 {
	font-family: "Andada Pro", sans-serif;
	font-size: 1.1rem;
	color: #3d5227;
	margin: 0 0 0.5em;
}

.fs-info-block p {
	font-family: "PT Sans", sans-serif;
	font-size: 0.95rem;
	color: #2a2a1e;
	line-height: 1.65;
	margin: 0;
}


/* ------------------------------------------------------------
   Price section
   ------------------------------------------------------------ */

.fs-prices-heading {
	font-family: "Andada Pro", sans-serif;
	font-size: 1.65rem;
	color: #3d5227;
	margin: 0 0 0.3em;
}

.fs-prices-note {
	font-family: "PT Sans", sans-serif;
	font-size: 0.9rem;
	color: #5a5a48;
	margin: 0 0 1.5em;
}

.fs-price-table {
	width: 100%;
	border-collapse: collapse;
	font-family: "PT Sans", sans-serif;
	font-size: 0.975rem;
}

.fs-price-table thead th {
	background-color: #3d5227;
	color: #f7f2e8;
	font-weight: 700;
	text-align: left;
	padding: 10px 16px;
}

.fs-price-table thead th:not(:first-child) {
	text-align: center;
}

.fs-price-table tbody tr {
	border-bottom: 1px solid #d6ceba;
}

.fs-price-table tbody tr:last-child {
	border-bottom: none;
}

.fs-price-table tbody tr:nth-child(even) {
	background-color: #ede7d5;
}

.fs-price-table td {
	padding: 9px 16px;
	color: #2a2a1e;
	vertical-align: middle;
}

.fs-price-table td:not(:first-child) {
	text-align: center;
	white-space: nowrap;
}

/* Category header rows */
.fs-price-table .fs-cat {
	background-color: #4e6a30 !important;
}

.fs-price-table .fs-cat td {
	font-family: "Andada Pro", sans-serif;
	font-weight: 700;
	font-size: 0.95rem;
	color: #f7f2e8;
	padding: 7px 16px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

/* "—" for items without a U-pick price */
.fs-price-table .no-upick {
	color: #5a5a48;
}

/* Minimum purchase note */
.fs-minimum {
	background-color: #ede7d5;
	border-left: 4px solid #c8961a;
	padding: 16px 20px;
	margin-top: 1.75em;
	border-radius: 0 4px 4px 0;
}

.fs-minimum p {
	font-family: "PT Sans", sans-serif;
	font-size: 0.9rem;
	color: #2a2a1e;
	line-height: 1.6;
	margin: 0;
}

.fs-minimum strong {
	color: #3d5227;
}


/* ------------------------------------------------------------
   Responsive — tablet (≤ 860px)
   ------------------------------------------------------------ */

@media ( max-width: 860px ) {

	.fs-info-row {
		grid-template-columns: 1fr;
	}

}


/* ------------------------------------------------------------
   Responsive — mobile (≤ 600px)
   ------------------------------------------------------------ */

@media ( max-width: 600px ) {

	.fs-content {
		padding: 36px 16px 56px;
	}

	.fs-price-table thead th,
	.fs-price-table td {
		padding: 8px 10px;
		font-size: 0.875rem;
	}

}


/* ------------------------------------------------------------
   Responsive — small mobile (≤ 480px)
   ------------------------------------------------------------ */

@media ( max-width: 480px ) {

	/* Make price table horizontally scrollable rather than squishing */
	.fs-price-table {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		white-space: nowrap;
	}

	/* Allow fruit name column to wrap while prices stay on one line */
	.fs-price-table td:first-child {
		white-space: normal;
		min-width: 140px;
	}

}
