/* 원데이프루츠 홈페이지 스타일 */

:root {
	--odf-navy: #0B2C50;
	--odf-navy-dark: #071D35;
	--odf-navy-light: #E7ECF1;
	--odf-orange: #FC750B;
	--odf-cream: #F7F6F2;
	--odf-beige: #E9E1D2;
	--odf-text: #1F2933;
	--odf-text-muted: #5C6B78;
	--odf-border: #E4E1D8;
	--odf-radius: 16px;
	--odf-container: 1160px;
}

* { box-sizing: border-box; }

body.odf-home {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
	color: var(--odf-text);
	background: #fff;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

.odf-container {
	max-width: var(--odf-container);
	margin: 0 auto;
	padding: 0 20px;
}

.odf-container--narrow { max-width: 760px; }

img { max-width: 100%; display: block; }

/* Buttons */
.odf-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 14px 24px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform .15s ease, opacity .15s ease;
}
.odf-btn:hover { opacity: .9; }
.odf-btn--primary { background: var(--odf-navy); color: #fff; }
.odf-btn--outline { border-color: var(--odf-navy); color: var(--odf-navy); background: transparent; }
.odf-btn--outline-light { border-color: rgba(255,255,255,.6); color: #fff; background: transparent; }
.odf-btn--light { background: #fff; color: var(--odf-navy-dark); }
.odf-btn--block { width: 100%; }
.odf-btn--sm { padding: 8px 18px; font-size: 13px; }
.odf-link { color: var(--odf-text); text-decoration: none; font-size: 14px; }

/* Header */
.odf-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255,255,255,.92);
	backdrop-filter: blur(6px);
	border-bottom: 1px solid var(--odf-border);
}
.odf-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 68px;
}
.odf-logo {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 800;
	font-size: 18px;
	color: var(--odf-text);
	text-decoration: none;
}
.odf-logo__mark { font-size: 20px; }
.odf-logo__img { height: 38px; width: auto; display: block; }
.odf-nav { display: none; gap: 28px; }
.odf-nav a { color: var(--odf-text); text-decoration: none; font-size: 14px; font-weight: 500; }
.odf-header__actions { display: flex; align-items: center; gap: 14px; }
.odf-header__actions .odf-link { display: none; }

/* Hamburger (mobile only) */
.odf-hamburger {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 32px;
	height: 32px;
	padding: 0;
	border: none;
	background: none;
	cursor: pointer;
}
.odf-hamburger span { display: block; width: 100%; height: 2px; background: var(--odf-text); border-radius: 2px; }

.odf-mobile-menu[hidden] { display: none; }
.odf-mobile-menu {
	display: flex;
	flex-direction: column;
	background: #fff;
	border-bottom: 1px solid var(--odf-border);
	padding: 8px 20px 16px;
}
.odf-mobile-menu a {
	padding: 12px 0;
	font-size: 15px;
	font-weight: 500;
	color: var(--odf-text);
	text-decoration: none;
	border-bottom: 1px solid var(--odf-border);
}
.odf-mobile-menu a:last-child { border-bottom: none; }
.odf-mobile-menu__login { color: var(--odf-navy); font-weight: 700; }

/* Hero */
.odf-hero { padding: 48px 0 56px; background: linear-gradient(180deg, var(--odf-navy-light) 0%, #fff 100%); }
.odf-hero__inner { display: flex; flex-direction: column; gap: 36px; }
.odf-hero__copy {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.odf-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #fff;
	border: 1px solid var(--odf-border);
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	color: var(--odf-navy);
	margin-bottom: 18px;
}
.odf-hero__copy h1 {
	font-size: 34px;
	line-height: 1.3;
	margin: 0 0 16px;
	font-weight: 800;
	letter-spacing: -.5px;
	white-space: nowrap; /* <br>로 지정한 줄바꿈 지점 외에는 기기/폰트별로 다르게 더 꺾이지 않도록 고정 */
}
.odf-hero__desc {
	color: var(--odf-text-muted);
	font-size: 15px;
	margin: 0 0 20px;
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
	white-space: nowrap; /* <br>로 지정한 줄바꿈 지점 외에는 기기/폰트별로 다르게 더 꺾이지 않도록 고정 */
}
.odf-hero__tags {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 28px;
	font-size: 13px;
	font-weight: 600;
	color: var(--odf-navy-dark);
}
.odf-hero__tags span:not(.odf-arrow) {
	background: #fff;
	border: 1px solid var(--odf-border);
	padding: 6px 12px;
	border-radius: 999px;
}
.odf-arrow { color: var(--odf-text-muted); }
.odf-hero__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.odf-hero__icons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px;
	margin-top: 28px;
	font-size: 12px;
	font-weight: 600;
	color: var(--odf-text-muted);
}
.odf-hero__icons div { display: flex; flex-direction: column; align-items: center; gap: 10px; width: 96px; }
.odf-hero__icons img { width: 56px; height: 56px; border-radius: 50%; }
.odf-hero__icons span { line-height: 1.4; }
.odf-hero__visual { position: relative; }
.odf-hero__image {
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: var(--odf-radius);
	object-fit: cover;
	border: 1px solid var(--odf-border);
}
.odf-hero__stat {
	position: absolute;
	left: 16px;
	bottom: -18px;
	background: #fff;
	border-radius: 12px;
	padding: 12px 16px;
	box-shadow: 0 8px 24px rgba(0,0,0,.08);
	font-size: 12px;
	max-width: 220px;
}
.odf-hero__stat strong { display: block; font-size: 14px; color: var(--odf-navy-dark); }
.odf-hero__stat span { color: var(--odf-text-muted); }

/* Section generic */
.odf-section { padding: 72px 0; }
.odf-section--muted { background: var(--odf-cream); }
.odf-section--dark { background: var(--odf-navy-dark); color: #fff; }
.odf-highlight { color: var(--odf-orange); }
.odf-eyebrow {
	text-align: center;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	color: var(--odf-navy);
	margin: 0 0 10px;
}
.odf-eyebrow--light { color: #A9BED6; }
.odf-section__title { text-align: center; font-size: 26px; font-weight: 800; margin: 0 0 12px; }
.odf-section__title--light { color: #fff; }
.odf-section__subtitle { text-align: center; color: var(--odf-text-muted); font-size: 14px; max-width: 520px; margin: 0 auto 40px; }
.odf-section__subtitle--light { color: rgba(255,255,255,.75); }

/* Grids */
.odf-grid-4, .odf-grid-2, .odf-grid-5, .odf-grid-3 { display: grid; gap: 20px; }
.odf-grid-4 { grid-template-columns: repeat(2, 1fr); }
.odf-grid-2 { grid-template-columns: 1fr; }
.odf-grid-5 { grid-template-columns: repeat(2, 1fr); }
.odf-grid-3 { grid-template-columns: 1fr; }

/* Pain point cards */
.odf-pain-card {
	background: #fff;
	border: 1px solid var(--odf-border);
	border-radius: var(--odf-radius);
	overflow: hidden;
	text-align: center;
}
.odf-pain-card__icon { display: block; font-size: 30px; margin: 24px 0 12px; }
.odf-pain-card p { margin: 0 16px 20px; font-size: 13px; color: var(--odf-text-muted); line-height: 1.5; }
.odf-pain-card .odf-fade-media img { width: 100%; height: auto; display: block; aspect-ratio: 4 / 3; object-fit: cover; }

/* 이미지 상/하단 경계 - 단순 투명도 대신 가장자리로 갈수록 강해지는 블러 그라데이션 */
.odf-fade-media { position: relative; overflow: hidden; display: block; }
.odf-fade-media::before,
.odf-fade-media::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	height: 34%;
	background-image: var(--odf-fade-img);
	background-size: cover;
	pointer-events: none;
	filter: blur(9px);
	z-index: 1;
}
.odf-fade-media::before {
	top: 0;
	background-position: center top;
	-webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.95) 0%, rgba(0,0,0,0) 100%);
	        mask-image: linear-gradient(to bottom, rgba(0,0,0,.95) 0%, rgba(0,0,0,0) 100%);
}
.odf-fade-media::after {
	bottom: 0;
	background-position: center bottom;
	-webkit-mask-image: linear-gradient(to top, rgba(0,0,0,.95) 0%, rgba(0,0,0,0) 100%);
	        mask-image: linear-gradient(to top, rgba(0,0,0,.95) 0%, rgba(0,0,0,0) 100%);
}
.odf-fade-media--vacuum { border-radius: 10px; margin-bottom: 10px; }

/* Why cards */
.odf-card {
	background: #fff;
	border: 1px solid var(--odf-border);
	border-radius: var(--odf-radius);
	padding: 24px 20px;
}
.odf-card__num { color: var(--odf-orange); font-weight: 800; font-size: 14px; }
.odf-card h3 { margin: 10px 0 8px; font-size: 16px; }
.odf-card p { margin: 0; font-size: 13px; color: var(--odf-text-muted); }

/* Vacuum packaging comparison */
.odf-vacuum { display: flex; flex-direction: column; gap: 40px; align-items: center; }
.odf-vacuum__copy { text-align: center; }
.odf-vacuum__eyebrow { margin: 0; font-size: 20px; font-weight: 700; color: var(--odf-text); }
.odf-vacuum__title { margin: 4px 0 14px; font-size: 28px; font-weight: 800; color: var(--odf-navy); }
.odf-vacuum__desc { margin: 0 0 24px; font-size: 14px; color: var(--odf-text-muted); }
.odf-vacuum__features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	font-size: 12px;
	font-weight: 700;
	color: var(--odf-text);
}
.odf-vacuum__features div { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.odf-vacuum__features span { font-size: 22px; }
.odf-vacuum__compare {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	max-width: 480px;
}
.odf-vacuum__box {
	flex: 1;
	background: var(--odf-cream);
	border: 1px solid var(--odf-border);
	border-radius: var(--odf-radius);
	overflow: hidden;
	text-align: center;
	padding: 14px;
}
.odf-vacuum__box--highlight { background: var(--odf-navy-light); border-color: var(--odf-navy); }
.odf-vacuum__label { display: block; font-size: 11px; font-weight: 700; margin-bottom: 10px; }
.odf-vacuum__box .odf-fade-media img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.odf-vacuum__box p { margin: 0; font-size: 11px; color: var(--odf-text-muted); line-height: 1.5; }
.odf-vacuum__vs {
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--odf-navy-dark);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 800;
}
.odf-vacuum__note { text-align: center; font-size: 11px; color: var(--odf-text-muted); margin: 16px 0 0; }

/* Products */
.odf-product-card {
	position: relative;
	background: #fff;
	border: 1px solid var(--odf-border);
	border-radius: var(--odf-radius);
	padding: 20px;
	display: flex;
	flex-direction: column;
}
.odf-tag {
	position: absolute;
	top: 16px;
	left: 16px;
	font-size: 11px;
	font-weight: 700;
	padding: 5px 10px;
	border-radius: 999px;
	color: #fff;
	z-index: 2;
}
.odf-tag--orange { background: var(--odf-orange); }
.odf-tag--green { background: var(--odf-navy); }
.odf-product-card__image {
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: 12px;
	background: linear-gradient(135deg, #F3EDE0 0%, #E5DCC8 100%);
	margin-bottom: 16px;
	overflow: hidden;
}
.odf-product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.odf-product-card h3 { margin: 0 0 12px; font-size: 18px; }

/* 시그니처박스 대표사진 여러 장 캐러셀(갤러리) */
.odf-hero-gallery { position: relative; width: 100%; height: 100%; }
.odf-hero-gallery__track {
	display: flex;
	width: 100%;
	height: 100%;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}
.odf-hero-gallery__track::-webkit-scrollbar { display: none; }
.odf-hero-gallery__slide { flex: 0 0 100%; scroll-snap-align: start; height: 100%; }
.odf-hero-gallery__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.odf-hero-gallery__dots {
	position: absolute;
	bottom: 10px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap: 6px;
}
.odf-hero-gallery__dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	border: none;
	background: rgba(255,255,255,.6);
	padding: 0;
	cursor: pointer;
}
.odf-hero-gallery__dot.is-active { background: #fff; width: 16px; border-radius: 3px; }
.odf-checklist { list-style: none; margin: 0 0 18px; padding: 0; font-size: 13px; color: var(--odf-text-muted); }
.odf-checklist li { padding-left: 20px; position: relative; margin-bottom: 6px; }
.odf-checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--odf-navy); font-weight: 700; }
.odf-product-card__price { margin-top: auto; margin-bottom: 14px; }
.odf-price { font-size: 24px; font-weight: 800; color: var(--odf-navy-dark); }
.odf-price small { font-size: 14px; font-weight: 500; margin-left: 2px; }

/* Fruit week */
.odf-fruit-week { margin-top: 56px; }
.odf-fruit-week__title { text-align: center; font-size: 18px; margin-bottom: 24px; }
.odf-fruit-card { background: #fff; border: 1px solid var(--odf-border); border-radius: 14px; padding: 12px; text-align: center; }
.odf-fruit-card__image {
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 10px;
	background: var(--odf-navy-light);
	overflow: hidden;
	margin-bottom: 10px;
}
.odf-fruit-card__image img { width: 100%; height: 100%; object-fit: cover; }
.odf-fruit-card__name { margin: 0; font-size: 13px; font-weight: 600; }
.odf-fruit-card__desc { font-size: 11px; color: var(--odf-text-muted); margin: 4px 0 0; line-height: 1.4; }

/* Process */
.odf-process {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin-bottom: 48px;
}
.odf-process__step {
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 12px;
	padding: 18px 12px;
	text-align: center;
	font-size: 13px;
	font-weight: 600;
}
.odf-process__step span { display: block; color: #A9BED6; font-weight: 800; margin-bottom: 6px; font-size: 12px; }
.odf-process-icons-labels {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	text-align: center;
	font-size: 13px;
	font-weight: 700;
	color: var(--odf-text);
}
.odf-process-icons-labels__emoji {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin: 0 auto 12px;
	background: #fff;
	border: 1px solid var(--odf-border);
	border-radius: 50%;
	font-size: 24px;
}
.odf-process-icons-labels small { display: block; margin-top: 4px; font-size: 11px; font-weight: 400; color: var(--odf-text-muted); }

/* Reviews */
.odf-empty-hint { text-align: center; color: var(--odf-text-muted); font-size: 13px; }
.odf-form-success {
	text-align: center;
	background: var(--odf-navy-light);
	color: var(--odf-navy-dark);
	border-radius: 12px;
	padding: 12px;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 20px;
}
.odf-form-error {
	text-align: center;
	background: #fdecec;
	color: #c0392b;
	border-radius: 12px;
	padding: 12px;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 20px;
}
.odf-review-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.odf-review-form label {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 13px;
	font-weight: 600;
	color: var(--odf-text);
}
.odf-review-form input,
.odf-review-form select,
.odf-review-form textarea {
	font: inherit;
	font-size: 14px;
	padding: 12px 14px;
	border: 1px solid var(--odf-border);
	border-radius: 10px;
	background: #fff;
	color: var(--odf-text);
	resize: vertical;
}
.odf-review-form input:focus,
.odf-review-form select:focus,
.odf-review-form textarea:focus {
	outline: 2px solid var(--odf-navy);
	outline-offset: 1px;
}

/* FAQ Accordion */
.odf-accordion__item { border-bottom: 1px solid var(--odf-border); }
.odf-accordion__question {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: none;
	border: none;
	text-align: left;
	font-size: 15px;
	font-weight: 600;
	padding: 18px 4px;
	cursor: pointer;
	color: var(--odf-text);
}
.odf-accordion__icon { font-size: 18px; color: var(--odf-navy); transition: transform .2s ease; }
.odf-accordion__item.is-open .odf-accordion__icon { transform: rotate(45deg); }
.odf-accordion__answer { display: none; padding: 0 4px 18px; font-size: 13px; color: var(--odf-text-muted); }
.odf-accordion__item.is-open .odf-accordion__answer { display: block; }

/* CTA banner */
.odf-cta { background: var(--odf-navy); color: #fff; text-align: center; padding: 64px 0; }
.odf-cta h2 { font-size: 26px; margin: 0 0 12px; }
.odf-cta p { margin: 0 0 26px; color: rgba(255,255,255,.85); }

/* Footer */
.odf-footer { background: var(--odf-navy-dark); color: rgba(255,255,255,.8); padding: 48px 0 20px; }
.odf-footer__inner { display: grid; gap: 28px; margin-bottom: 32px; }
.odf-footer__brand { font-weight: 700; color: #fff; }
.odf-footer__brand p { font-weight: 400; font-size: 13px; color: rgba(255,255,255,.6); margin-top: 8px; }
.odf-footer__col h4 { font-size: 13px; color: #fff; margin: 0 0 10px; }
.odf-footer__col p { font-size: 13px; margin: 0 0 6px; }
.odf-footer__col a { color: rgba(255,255,255,.8); text-decoration: none; }
.odf-footer__biz { border-top: 1px solid rgba(255,255,255,.12); padding-top: 20px; margin-bottom: 20px; }
.odf-footer__biz p { margin: 0 0 6px; font-size: 11px; line-height: 1.7; color: rgba(255,255,255,.45); }
.odf-footer__copyright { border-top: 1px solid rgba(255,255,255,.12); padding-top: 16px; font-size: 12px; color: rgba(255,255,255,.5); }

/* 아주 좁은 화면(구형 소형폰 등) - white-space: nowrap로 고정한 히어로 문구가 넘치지 않도록 폰트만 살짝 축소 */
@media (max-width: 360px) {
	.odf-hero__copy h1 { font-size: 28px; }
	.odf-hero__desc { font-size: 13px; }
}

/* ===== Tablet / Desktop (반응형) ===== */
@media (min-width: 768px) {
	.odf-grid-4 { grid-template-columns: repeat(4, 1fr); }
	.odf-grid-2 { grid-template-columns: repeat(2, 1fr); }
	.odf-grid-5 { grid-template-columns: repeat(5, 1fr); }
	.odf-grid-3 { grid-template-columns: repeat(3, 1fr); }
	.odf-process { grid-template-columns: repeat(4, 1fr); }
	.odf-process-icons-labels { grid-template-columns: repeat(5, 1fr); }
	.odf-footer__inner { grid-template-columns: 2fr 1fr 1fr; }
}

@media (min-width: 960px) {
	.odf-nav { display: flex; }
	.odf-header__actions .odf-link { display: inline-flex; }
	.odf-hamburger { display: none; }
	.odf-mobile-menu { display: none !important; }
	.odf-hero__inner { flex-direction: row; align-items: center; }
	.odf-hero__copy, .odf-hero__visual { flex: 1; }
	.odf-hero__copy h1 { font-size: 44px; }
	.odf-section__title { font-size: 32px; }

	/* PC(원본 목업 기준): 텍스트 좌측 + 이미지 우측 나란히, 텍스트는 좌측 정렬 */
	.odf-hero__copy {
		text-align: left;
		align-items: flex-start;
	}
	.odf-hero__desc { margin-left: 0; margin-right: 0; }
	.odf-hero__tags { justify-content: flex-start; }
	.odf-hero__cta { justify-content: flex-start; }
	.odf-hero__icons { justify-content: flex-start; }

	.odf-vacuum { flex-direction: row; align-items: center; justify-content: space-between; gap: 60px; }
	.odf-vacuum__copy { text-align: left; flex: 1; }
	.odf-vacuum__eyebrow, .odf-vacuum__title { text-align: left; }
	.odf-vacuum__features { grid-template-columns: repeat(4, 1fr); }
	.odf-vacuum__compare { flex: 1; }

	/* 마이페이지: PC에서는 화면 폭을 채우는 대시보드 형태로 (세로는 내용만큼만) */
	.odf-mypage {
		max-width: none;
		width: 100%;
		box-sizing: border-box;
		padding: 56px 80px 100px;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-auto-rows: min-content;
		gap: 28px;
		align-content: start;
	}
	.odf-mypage__header,
	.odf-mypage__greeting,
	.odf-mypage__admin-link {
		grid-column: 1 / -1;
	}
	.odf-mypage__greeting { font-size: 28px; }
	.odf-mypage__card {
		margin-bottom: 0;
		padding: 40px;
		display: flex;
		flex-direction: column;
	}
	.odf-mypage__card h2 { font-size: 18px; }
	.odf-mypage__card:first-of-type,
	.odf-mypage__card:last-of-type {
		grid-column: 1 / -1;
	}
	.odf-mypage__card form,
	.odf-mypage__card .odf-btn {
		max-width: 480px;
	}
	.odf-mypage__checklist {
		flex: 1;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		align-content: start;
	}
}

@media (min-width: 1400px) {
	.odf-mypage { padding-left: 160px; padding-right: 160px; }
}

/* 로그인 페이지 */
.odf-login {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 36px;
	padding: 40px 20px;
	background: var(--odf-cream);
}
.odf-login__logo { justify-content: center; }
.odf-login__card {
	width: 100%;
	max-width: 360px;
	background: #fff;
	border: 1px solid var(--odf-border);
	border-radius: var(--odf-radius);
	padding: 36px 28px;
	text-align: center;
}
.odf-login__card h1 { font-size: 20px; font-weight: 800; margin: 0 0 10px; line-height: 1.4; }
.odf-login__card p { font-size: 13px; color: var(--odf-text-muted); margin: 0 0 28px; }
.odf-kakao-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 14px;
	background: #FEE500;
	color: #191919;
	border: none;
	border-radius: 12px;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	text-decoration: none;
	box-sizing: border-box;
}
.odf-kakao-btn__icon { font-size: 18px; }
.odf-login__back { display: inline-block; margin-top: 22px; font-size: 13px; color: var(--odf-text-muted); text-decoration: none; }
.odf-login__test-toggle {
	display: block;
	margin: 18px auto 0;
	background: none;
	border: none;
	font-size: 12px;
	color: var(--odf-text-muted);
	text-decoration: underline;
	cursor: pointer;
}
.odf-login__test-form { margin-top: 14px; text-align: left; }

/* 회원가입 화면 목업 (카카오 심사 제출용) */
.odf-signup-preview {
	width: 100%;
	max-width: 360px;
	background: #fff;
	border: 1px solid var(--odf-border);
	border-radius: var(--odf-radius);
	overflow: hidden;
}
.odf-signup-preview h1 { margin: 0; padding: 18px 20px; font-size: 16px; text-align: center; border-bottom: 1px solid var(--odf-border); }
.odf-signup-preview h2 { margin: 0; padding: 10px 20px; font-size: 12px; font-weight: 700; color: #fff; background: #8A8F98; }
.odf-signup-preview label { display: block; padding: 14px 20px 0; font-size: 12px; color: var(--odf-text-muted); }
.odf-signup-preview input {
	display: block;
	width: 100%;
	margin-top: 6px;
	padding: 10px 12px;
	font-size: 14px;
	border: 1px solid var(--odf-border);
	border-radius: 8px;
	background: #F7F6F2;
	color: var(--odf-text);
}
.odf-signup-preview__row { display: flex; gap: 6px; margin-top: 6px; }
.odf-signup-preview__row input { margin-top: 0; }
.odf-signup-preview .odf-btn { margin: 20px; width: calc(100% - 40px); }

/* 마이페이지 */
.odf-mypage { width: 100%; box-sizing: border-box; margin: 0 auto; padding: 24px 20px 60px; background: var(--odf-cream); min-height: 100vh; }
.odf-mypage__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.odf-mypage__greeting { font-size: 20px; font-weight: 800; margin: 0 0 20px; }
.odf-mypage__admin-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: -8px 0 20px;
	padding: 8px 14px;
	background: var(--odf-navy-dark);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	border-radius: 999px;
	text-decoration: none;
	justify-self: start;
}
.odf-mypage__card {
	background: #fff;
	border: 1px solid var(--odf-border);
	border-radius: var(--odf-radius);
	padding: 24px;
	margin-bottom: 16px;
}
.odf-mypage__card h2 { font-size: 15px; font-weight: 800; margin: 0 0 14px; }
.odf-mypage__desc { font-size: 13px; color: var(--odf-text-muted); margin: 0 0 16px; }
.odf-mypage__empty { font-size: 13px; color: var(--odf-text-muted); margin: 0 0 16px; line-height: 1.6; }
.odf-mypage__checklist { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.odf-mypage__checkbox { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.odf-mypage__checkbox input { width: 16px; height: 16px; }
.odf-mypage__withdraw { color: var(--odf-text-muted); border-color: var(--odf-border); }

.odf-mypage__subscriptions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.odf-mypage__subscription {
	border: 1px solid var(--odf-border);
	border-radius: 12px;
	padding: 14px 16px;
	background: var(--odf-cream);
}
.odf-mypage__subscription-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.odf-mypage__subscription-top strong { font-size: 14px; }
.odf-mypage__badge {
	background: var(--odf-navy);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 999px;
}
.odf-mypage__subscription-desc { font-size: 12px; color: var(--odf-text-muted); margin: 0 0 6px; }
.odf-mypage__subscription-price { font-size: 15px; font-weight: 800; color: var(--odf-navy); margin: 0; }

/* 신청(주문) 페이지 - 시그니처/패밀리박스 */
.odf-order {
	width: 100%;
	box-sizing: border-box;
	margin: 0 auto;
	padding: 20px 20px 140px;
	background: var(--odf-cream);
	min-height: 100vh;
}
.odf-order__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}
.odf-order__close {
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: #fff;
	border: 1px solid var(--odf-border);
	color: var(--odf-text);
	text-decoration: none;
	font-size: 16px;
}
.odf-order__title { font-size: 21px; font-weight: 800; margin: 0 0 18px; }

.odf-order__steps {
	display: flex;
	align-items: center;
	margin-bottom: 28px;
}
.odf-order__step {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	color: var(--odf-text-muted);
	font-weight: 600;
	flex-shrink: 0;
}
.odf-order__step span {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid var(--odf-border);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	color: var(--odf-text-muted);
}
.odf-order__step.is-active span {
	background: var(--odf-navy);
	border-color: var(--odf-navy);
	color: #fff;
}
.odf-order__step.is-active { color: var(--odf-navy); }
.odf-order__step-line {
	flex: 1;
	height: 2px;
	background: var(--odf-border);
	margin: 0 6px 18px;
}

.odf-order__section { margin-bottom: 32px; }
.odf-order__section-title { font-size: 16px; font-weight: 800; margin: 0 0 4px; }
.odf-order__section-desc { font-size: 13px; color: var(--odf-text-muted); margin: 0 0 16px; }

/* 패밀리박스 등급 선택 카드 */
.odf-order__tier-list { display: flex; flex-direction: column; gap: 12px; }
.odf-order__tier {
	position: relative;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px;
	background: #fff;
	border: 2px solid var(--odf-border);
	border-radius: var(--odf-radius);
	cursor: pointer;
	transition: border-color .15s ease;
}
.odf-order__tier.is-selected { border-color: var(--odf-navy); }
.odf-order__tier input { position: absolute; opacity: 0; pointer-events: none; }
.odf-order__tier-image {
	width: 76px;
	height: 76px;
	flex-shrink: 0;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--odf-beige), var(--odf-navy-light));
	overflow: hidden;
}
.odf-order__tier-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
	display: block;
}
.odf-order__tier-image--economy { background: linear-gradient(135deg, #F3EEDD, #E9E1D2); }
.odf-order__tier-image--business { background: linear-gradient(135deg, #EFE6D0, var(--odf-beige)); }
.odf-order__tier-image--first { background: linear-gradient(135deg, var(--odf-beige), #D9CBAE); }
.odf-order__tier-body { flex: 1; display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.odf-order__tier-top { display: flex; align-items: center; gap: 8px; }
.odf-order__tier-top strong { font-size: 14px; font-weight: 800; letter-spacing: .02em; }
.odf-order__tier-badge {
	background: var(--odf-orange);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 999px;
}
.odf-order__tier-price { font-size: 17px; font-weight: 800; color: var(--odf-navy); }
.odf-order__tier-price small { font-size: 12px; font-weight: 600; color: var(--odf-text-muted); }
.odf-order__tier-desc { font-size: 12px; color: var(--odf-text-muted); }
.odf-order__tier-tag {
	align-self: flex-start;
	margin-top: 2px;
	background: var(--odf-navy-light);
	color: var(--odf-navy);
	font-size: 11px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 999px;
}
.odf-order__tier-radio {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	border-radius: 50%;
	border: 2px solid var(--odf-border);
	position: relative;
}
.odf-order__tier.is-selected .odf-order__tier-radio { border-color: var(--odf-navy); }
.odf-order__tier.is-selected .odf-order__tier-radio::after {
	content: '';
	position: absolute;
	inset: 3px;
	border-radius: 50%;
	background: var(--odf-navy);
}

/* 시그니처박스 기본상품/옵션 */
.odf-order__product {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px;
	background: #fff;
	border: 2px solid var(--odf-border);
	border-radius: var(--odf-radius);
	margin-bottom: 16px;
}
/* 기본 과일 수량 스테퍼 - .odf-order__addon 카드 스타일(테두리/배경/패딩)은 여기선 필요없어 초기화 */
.odf-order__base-qty.odf-order__addon {
	border: none;
	background: transparent;
	padding: 0;
	border-radius: 0;
}
.odf-order__product-image {
	width: 76px;
	height: 76px;
	flex-shrink: 0;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--odf-beige), var(--odf-navy-light));
	overflow: hidden;
}
.odf-order__product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.odf-order__product-body { display: flex; flex-direction: column; gap: 6px; }
.odf-order__product-top { display: flex; align-items: center; gap: 8px; }
.odf-order__product-top strong { font-size: 15px; font-weight: 800; }
.odf-order__product-required {
	background: var(--odf-navy);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 999px;
}
.odf-order__product-price { font-size: 16px; font-weight: 800; color: var(--odf-navy); }

.odf-order__addon-title { font-size: 13px; font-weight: 700; margin: 0 0 10px; color: var(--odf-text-muted); }
.odf-order__addon-list { display: flex; flex-direction: column; gap: 10px; }
.odf-order__addon {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	background: #fff;
	border: 2px solid var(--odf-border);
	border-radius: 14px;
}
.odf-order__addon.is-selected { border-color: var(--odf-navy); }
.odf-order__addon-image {
	width: 44px;
	height: 44px;
	flex-shrink: 0;
	border-radius: 10px;
	background: var(--odf-navy-light);
	overflow: hidden;
}
.odf-order__addon-image--poke { background: linear-gradient(135deg, #EFE6D0, var(--odf-beige)); }
.odf-order__addon-image--chicken { background: linear-gradient(135deg, #F0F1EC, var(--odf-navy-light)); }
.odf-order__addon-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.odf-order__addon-body { flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.odf-order__addon-body strong { font-size: 13px; font-weight: 700; }
.odf-order__addon-body span { font-size: 12px; color: var(--odf-orange); font-weight: 700; }
.odf-order__addon-stepper {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}
.odf-order__addon-btn {
	width: 28px;
	height: 28px;
	flex-shrink: 0;
	border-radius: 50%;
	border: 2px solid var(--odf-border);
	background: #fff;
	color: var(--odf-navy);
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.odf-order__addon-btn:disabled { opacity: .35; cursor: not-allowed; }
.odf-order__addon.is-selected .odf-order__addon-btn { border-color: var(--odf-navy); }
.odf-order__addon-qty { min-width: 16px; text-align: center; font-size: 14px; font-weight: 800; }
.odf-order__addon-note { font-size: 11px; color: var(--odf-text-muted); margin: 10px 0 0; }

/* 오픈특가 안내(대기/품절) 화면 */
.odf-flash-sale__announce { text-align: center; padding: 60px 20px; }
.odf-flash-sale__announce-emoji { font-size: 40px; margin: 0 0 16px; }
.odf-flash-sale__announce-message { font-size: 16px; font-weight: 700; color: var(--odf-text); margin: 0 0 24px; line-height: 1.5; }
.odf-flash-sale__preview-banner {
	background: #FFF3CD;
	color: #664D03;
	border: 1px solid #FFE69C;
	border-radius: 8px;
	padding: 10px 12px;
	font-size: 12px;
	font-weight: 600;
	margin: 0 0 16px;
}

/* 오픈특가 상품 목록 (flash_id 없이 접속 시) - 카드형 그리드 */
.odf-flash-list__count { font-size: 12px; color: var(--odf-text-muted); margin: 0 0 12px; }
.odf-flash-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px 12px;
}
.odf-flash-list__item {
	display: flex;
	flex-direction: column;
	border-radius: 14px;
	background: #fff;
	border: 1px solid var(--odf-border);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
}
.odf-flash-list__image {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	background: var(--odf-navy-light);
	display: flex;
	align-items: center;
	justify-content: center;
}
.odf-flash-list__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.odf-flash-list__soldout-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(11, 44, 80, .55);
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .05em;
}
.odf-flash-list__body { display: flex; flex-direction: column; gap: 4px; padding: 10px 12px 12px; }
.odf-flash-list__name {
	font-size: 13px;
	font-weight: 700;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.odf-flash-list__price { font-size: 15px; font-weight: 800; color: var(--odf-navy-dark); }
.odf-flash-list__tags { display: flex; flex-wrap: wrap; gap: 4px; }
.odf-flash-list__badge {
	font-size: 10px;
	font-weight: 700;
	padding: 2px 7px;
	border-radius: 4px;
	background: var(--odf-navy-light);
	color: var(--odf-navy-dark);
}
.odf-flash-list__badge--buyable { background: var(--odf-orange); color: #fff; }
.odf-flash-list__badge--soldout { background: #E4E1D8; color: var(--odf-text-muted); }

@media (min-width: 560px) {
	.odf-flash-list { grid-template-columns: repeat(3, 1fr); }
}

/* 오픈특가 상세 설명 (상품별 등록) */
.odf-flash-detail__text { font-size: 13px; line-height: 1.6; color: var(--odf-text); white-space: pre-line; margin: 0 0 16px; }
.odf-flash-detail__image { display: block; width: 100%; border-radius: 10px; margin: 0 0 12px; }

/* 배송 요일 */
.odf-order__days { display: flex; gap: 6px; margin-bottom: 16px; }
.odf-order__day-btn {
	flex: 1;
	padding: 12px 0;
	border-radius: 12px;
	border: 2px solid var(--odf-border);
	background: #fff;
	color: var(--odf-text);
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
}
.odf-order__day-btn.is-selected { background: var(--odf-navy); border-color: var(--odf-navy); color: #fff; }
.odf-order__day-summary {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 16px;
	background: #fff;
	border-radius: var(--odf-radius);
	border: 1px solid var(--odf-border);
}
.odf-order__day-summary-label { display: block; font-size: 12px; color: var(--odf-text-muted); margin-bottom: 4px; }
.odf-order__day-summary-value { font-size: 14px; font-weight: 700; }

/* 패밀리박스 과일 준비 방식 (필수 선택, 가격 영향 없음 - addon 수량 카운터와는 다른 단순 라디오) */
.odf-order__fruit-style-list { display: flex; flex-direction: column; gap: 10px; margin: 12px 0 20px; }
.odf-order__fruit-style-option {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	background: #fff;
	border: 2px solid var(--odf-border);
	border-radius: var(--odf-radius);
	cursor: pointer;
}
.odf-order__fruit-style-option.is-selected { border-color: var(--odf-navy); }
.odf-order__fruit-style-option input { position: absolute; opacity: 0; pointer-events: none; }
.odf-order__fruit-style-radio {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	border-radius: 50%;
	border: 2px solid var(--odf-border);
	position: relative;
}
.odf-order__fruit-style-option.is-selected .odf-order__fruit-style-radio { border-color: var(--odf-navy); }
.odf-order__fruit-style-option.is-selected .odf-order__fruit-style-radio::after {
	content: '';
	position: absolute;
	inset: 3px;
	border-radius: 50%;
	background: var(--odf-navy);
}
.odf-order__fruit-style-body { font-size: 14px; font-weight: 700; }

/* 결제 옵션 */
.odf-order__payment-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 12px; }
.odf-order__payment-option {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px;
	background: #fff;
	border: 2px solid var(--odf-border);
	border-radius: var(--odf-radius);
	cursor: pointer;
}
.odf-order__payment-option.is-selected { border-color: var(--odf-navy); }
.odf-order__payment-option input { position: absolute; opacity: 0; pointer-events: none; }
.odf-order__payment-radio {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	border-radius: 50%;
	border: 2px solid var(--odf-border);
	position: relative;
}
.odf-order__payment-option.is-selected .odf-order__payment-radio { border-color: var(--odf-navy); }
.odf-order__payment-option.is-selected .odf-order__payment-radio::after {
	content: '';
	position: absolute;
	inset: 3px;
	border-radius: 50%;
	background: var(--odf-navy);
}
.odf-order__payment-body { display: flex; flex-direction: column; gap: 4px; }
.odf-order__payment-top { font-size: 14px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.odf-order__payment-badge {
	background: var(--odf-orange);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 999px;
}
.odf-order__payment-desc { font-size: 12px; color: var(--odf-text-muted); }
.odf-order__lock-note {
	font-size: 12px;
	color: var(--odf-text-muted);
	background: var(--odf-navy-light);
	padding: 12px 14px;
	border-radius: 12px;
	margin: 0;
}

.odf-order__customer-fields { display: flex; flex-direction: column; gap: 14px; }
.odf-order__customer-fields label {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 13px;
	font-weight: 600;
	color: var(--odf-text);
}
.odf-order__required { color: var(--odf-orange); }
.odf-order__customer-fields input,
.odf-order__customer-fields textarea {
	font: inherit;
	font-size: 14px;
	padding: 12px 14px;
	border: 1px solid var(--odf-border);
	border-radius: 10px;
	background: #fff;
	color: var(--odf-text);
	resize: none;
}
.odf-order__customer-fields input:focus,
.odf-order__customer-fields textarea:focus {
	outline: 2px solid var(--odf-navy);
	outline-offset: 1px;
}

.odf-order__spacer { height: 20px; }

/* 하단 고정 결제바 */
.odf-order__bottombar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	background: #fff;
	border-top: 1px solid var(--odf-border);
	box-shadow: 0 -4px 16px rgba(11,44,80,.06);
	z-index: 40;
}
.odf-order__bottombar-inner {
	max-width: var(--odf-container);
	margin: 0 auto;
	padding: 14px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.odf-order__bottombar-price { display: flex; flex-direction: column; gap: 2px; }
.odf-order__bottombar-price span { font-size: 11px; color: var(--odf-text-muted); }
.odf-order__bottombar-price strong { font-size: 19px; font-weight: 800; color: var(--odf-navy); }
.odf-order__submit { flex-shrink: 0; padding: 14px 30px; }

.odf-order__toast {
	position: fixed;
	left: 50%;
	bottom: 90px;
	transform: translate(-50%, 10px);
	background: var(--odf-navy-dark);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	padding: 12px 18px;
	border-radius: 999px;
	opacity: 0;
	transition: opacity .2s ease, transform .2s ease;
	z-index: 60;
	white-space: nowrap;
	max-width: calc(100% - 40px);
	white-space: normal;
	text-align: center;
}
.odf-order__toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

@media (min-width: 768px) {
	.odf-order { max-width: 640px; padding-left: 32px; padding-right: 32px; }
	.odf-order__bottombar-inner { max-width: 640px; padding-left: 32px; padding-right: 32px; }
}

@media (min-width: 960px) {
	.odf-order { max-width: 720px; padding-top: 40px; }
	.odf-order__title { font-size: 26px; }
}

/* 간단 안내 모달 (이미 구독중입니다 등) */
.odf-simple-modal { position: fixed; inset: 0; z-index: 100000; }
.odf-simple-modal__backdrop { position: absolute; inset: 0; background: rgba(20,20,20,.55); }
.odf-simple-modal__panel {
	position: relative;
	max-width: 340px;
	width: calc(100% - 48px);
	margin: 30vh auto 0;
	background: #fff;
	border-radius: var(--odf-radius);
	padding: 28px 24px 24px;
	text-align: center;
}
.odf-simple-modal__message { font-size: 15px; font-weight: 700; color: var(--odf-text); margin: 0 0 20px; white-space: pre-line; }
.odf-simple-modal__actions { display: flex; gap: 8px; }
.odf-simple-modal__actions .odf-btn { flex: 1; }
