/* 기본 초기화 */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background-color: #f9f8f6;
    color: #333;
    display: flex;
    justify-content: center;
}

/* 모바일 전용 컨테이너 */
.mobile-container {
    width: 100%;
    max-width: 480px;
    background-color: #ffffff;
    min-height: 100vh;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

header {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

header h1 {
    font-size: 20px;
    font-weight: 700;
    color: #4a3525;
}

.hero {
    padding: 30px 20px;
    background: linear-gradient(135deg, #4a3525 0%, #2c1d11 100%);
    color: #fff;
    text-align: center;
}

.section-title {
    padding: 20px 20px 10px 20px;
    font-size: 16px;
    font-weight: 700;
}

.product-list {
    padding: 0 20px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-card {
    display: flex;
    background: #fff;
    border: 1px solid #eae5e0;
    border-radius: 10px;
    overflow: hidden;
}

.product-img {
    width: 110px;
    background-color: #e5dcd3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.product-info {
    padding: 15px;
    flex: 1;
}

.product-name { font-size: 14px; font-weight: 600; }
.product-desc { font-size: 12px; color: #666; margin-top: 4px; }
.product-price { font-size: 14px; font-weight: 700; color: #b5651d; margin-top: 8px; }

.order-btn-area { padding: 20px; margin-top: auto; }
.btn-order {
    width: 100%;
    padding: 15px;
    background-color: #4a3525;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

footer {
    padding: 20px;
    text-align: center;
    font-size: 11px;
    color: #aaa;
    border-top: 1px solid #eee;
}