/* 供花・供物のご注文ページ */

/* ============================================
   注文方法セクション
   ============================================ */
.order-intro-section {
	background: #f8fdf9;
	border-bottom: 1px solid #e0efe8;
}

.order-intro-section .section-inner {
	padding-top: 40px;
	padding-bottom: 40px;
}

.order-intro-text {
	font-size: 15px;
	line-height: 1.9;
	color: #555;
	text-align: center;
	margin: 0 0 28px;
}

/* ============================================
   注文ボタン
   ============================================ */
.order-btn-wrap {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.order-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 32px;
	border-radius: 4px;
	font-size: 15px;
	font-weight: bold;
	text-decoration: none;
	transition: opacity 0.2s;
	min-width: 220px;
}

.order-btn:hover {
	opacity: 0.8;
}

.order-btn--primary {
	background: #4da487;
	color: #fff;
}

.order-btn--secondary {
	background: #fff;
	color: #4da487;
	border: 2px solid #4da487;
}

/* ============================================
   商品セクション
   ============================================ */
.order-section {
	background: #fff;
}

.order-section--alt {
	background: #f8fdf9;
}

.order-section .section-inner {
	padding-top: 56px;
	padding-bottom: 56px;
}

.order-section-title {
	font-size: 20px;
	font-weight: bold;
	color: #333;
	margin: 0 0 28px;
	padding-left: 14px;
	border-left: 4px solid #4da487;
}

.order-category-title {
	font-size: 16px;
	font-weight: bold;
	color: #555;
	margin: 32px 0 16px;
	padding: 0 0 8px;
	border-bottom: 2px solid #e0efe8;
}

.order-category-title:first-of-type {
	margin-top: 0;
}

/* ============================================
   商品リスト
   ============================================ */
.order-list {
	list-style: none;
	margin: 0 0 8px;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.order-item {
	background: #fff;
	border: 1px solid #e8f0eb;
	border-radius: 8px;
	overflow: hidden;
	transition: box-shadow 0.2s;
}

.order-section--alt .order-item {
	background: #fff;
}

.order-item:hover {
	box-shadow: 0 4px 16px rgba(77, 164, 135, 0.12);
}

/* 画像 */
.order-item-img {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #f5f5f5;
}

.order-item-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* テキスト */
.order-item-body {
	padding: 16px;
}

.order-item-name {
	font-size: 15px;
	font-weight: bold;
	color: #333;
	margin: 0 0 8px;
}

.order-item-price {
	font-size: 18px;
	font-weight: bold;
	color: #4da487;
	margin: 0;
}

.order-item-tax {
	font-size: 12px;
	font-weight: normal;
	color: #888;
	margin-left: 4px;
}

/* 複数価格（缶詰籠） */
.order-item-price-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.order-item-price-list li {
	font-size: 16px;
	font-weight: bold;
	color: #4da487;
	margin-bottom: 4px;
	line-height: 1.5;
}

.order-item-price-list li:last-child {
	margin-bottom: 0;
}

/* ============================================
   注文ボタン（再掲）セクション
   ============================================ */
.order-cta-section {
	background: #f8fdf9;
	border-top: 1px solid #e0efe8;
}

.order-cta-section .section-inner {
	padding-top: 48px;
	padding-bottom: 48px;
}

/* ============================================
   レスポンシブ
   ============================================ */
@media screen and (max-width: 960px) {
	.order-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 768px) {
	.order-intro-text {
		text-align: left;
	}

	.order-btn-wrap {
		flex-direction: column;
		align-items: center;
	}

	.order-btn {
		width: 100%;
		max-width: 320px;
	}

	.order-list {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.order-item-body {
		padding: 12px;
	}

	.order-item-name {
		font-size: 14px;
	}

	.order-item-price {
		font-size: 15px;
	}
}

@media screen and (max-width: 480px) {
	.order-list {
		grid-template-columns: 1fr;
	}
}
