.front-list {
    margin: 0;
    padding-left: 20px;
    line-height: 1.8;
}
.front-guide-box {
    background: #f6fbf7;
    border: 1px solid #d8eadc;
    border-radius: 12px;
    padding: 16px;
}

.front-guide-box p {
    margin: 0 0 10px 0;
}

.front-guide-box p:last-child {
    margin-bottom: 0;
}

.mini-order-status {
    margin-top: 6px;
    font-size: 12px;
    color: #6b7280;
}

.inline-form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-input {
    width: 80px !important;
}

.front-btn.small {
    padding: 8px 10px;
    font-size: 12px;
}

.front-order-link {
    color: #256d4a;
    font-weight: bold;
}

.front-btn.danger {
    background: #b91c1c;
}
/* 마이페이지/회원가입/로그인 보강 */
.narrow-container {
    max-width: 720px;
}

.front-form {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.front-form label {
    display: block;
    margin-top: 14px;
    margin-bottom: 6px;
    font-weight: bold;
}

.front-form input,
.front-form select,
.front-form textarea {
    width: 100%;
    padding: 11px 12px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 14px;
}

.front-form .front-btn {
    margin-top: 18px;
    border: none;
    cursor: pointer;
}

.front-form .required {
    color: #e53e3e;
    margin-left: 2px;
}

.front-form small {
    font-weight: normal;
    color: #6b7280;
    font-size: 12px;
}

/* 회원정보 수정 폼 */
.form-section-label {
    font-size: 12px;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 20px;
    margin-bottom: 4px;
    padding-bottom: 4px;
    border-bottom: 1px solid #e5e7eb;
}

.input-readonly {
    background: #f9fafb !important;
    color: #6b7280 !important;
    cursor: default;
}

/* 비밀번호 변경 박스 */
.pw-change-box {
    margin-top: 28px;
    background: #fffbeb;
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 20px 20px 16px;
}

.pw-change-title {
    font-size: 15px;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 6px;
}

.pw-change-desc {
    font-size: 13px;
    color: #78350f;
    margin-bottom: 12px;
}

.signup-notice {
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #166534;
    line-height: 1.8;
}

.signup-notice p {
    margin: 0;
}

.front-flash {
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 14px;
}

.front-flash.success {
    background: #e6f6ea;
    color: #1f6b35;
}

.front-flash.error {
    background: #fde2e2;
    color: #9b1c1c;
}

.front-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.front-table th,
.front-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
    font-size: 14px;
}

.front-table th {
    background: #edf5ef;
}
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, "Malgun Gothic", sans-serif;
    background: #f7faf8;
    color: #1f2937;
}

a {
    text-decoration: none;
}

.front-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.front-header {
    background: #1f4d3a;
    color: white;
    position: sticky;
    top: 0;
    z-index: 10;
}

.header-inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand a {
    color: white;
    font-size: 22px;
    font-weight: bold;
}

.brand span {
    display: block;
    color: #d9f3e5;
    font-size: 13px;
    margin-top: 4px;
}

.front-nav {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.front-nav a {
    color: white;
    font-size: 15px;
}

.front-main {
    min-height: calc(100vh - 140px);
}

.hero {
    background: linear-gradient(135deg, #e6f4ea, #f8fcf9);
    padding: 70px 0;
}

.hero h1 {
    margin: 0 0 16px 0;
    font-size: 42px;
    line-height: 1.2;
    color: #173b2c;
}

.hero p {
    max-width: 760px;
    font-size: 18px;
    color: #374151;
    line-height: 1.7;
}

.hero-actions {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.front-btn {
    display: inline-block;
    background: #256d4a;
    color: white;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: bold;
}

.front-btn.secondary {
    background: #6b7280;
}

.stats-section {
    padding: 26px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.stat-card,
.front-card,
.page-panel {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.stat-card {
    padding: 22px;
}

.stat-card h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
}

.stat-card p {
    margin: 0;
    font-size: 30px;
    font-weight: bold;
    color: #1f4d3a;
}

.content-section,
.page-section {
    padding: 34px 0 56px;
}

.content-section.alt {
    background: #eef6f0;
}

.section-header {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.section-header h2,
.page-section h1 {
    margin: 0 0 18px 0;
    color: #173b2c;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.front-card .card-body {
    padding: 20px;
}

.card-tag {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #e6f4ea;
    color: #1f4d3a;
    font-size: 12px;
    font-weight: bold;
}

.front-card h3 {
    margin: 0 0 12px 0;
    font-size: 20px;
    line-height: 1.4;
}

.front-card p,
.page-panel p {
    margin: 0 0 10px 0;
    line-height: 1.6;
    color: #374151;
}

.page-panel {
    padding: 24px;
}

.text-link {
    display: inline-block;
    margin-top: 8px;
    color: #256d4a;
    font-weight: bold;
}

.front-footer {
    background-color: #2c5f2d;
    color: white;
    padding: 50px 0 0;
    font-size: 13px;
    margin-top: 50px;
}

.front-footer .footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 0;
}

.front-footer .footer-org-name {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #a8f0c6;
    margin-bottom: 8px;
}

.front-footer .footer-col {
    line-height: 1.8;
}

.front-footer .footer-col h4 {
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #a8f0c6;
}

.front-footer .footer-col p {
    margin-bottom: 6px;
    color: rgba(255,255,255,0.9);
}

.front-footer .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.front-footer .footer-col li {
    margin-bottom: 8px;
}

.front-footer .footer-col a {
    color: #90ee90;
    text-decoration: none;
}

.front-footer .footer-col a:hover {
    color: white;
    text-decoration: underline;
}

.front-footer .footer-bottom {
    text-align: center;
    font-size: 12px;
    opacity: 0.8;
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.front-footer .footer-bottom p {
    margin: 0;
}

@media (max-width: 768px) {
    .front-footer .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 480px) {
    .front-footer .footer-top { grid-template-columns: 1fr; }
}
