/* product.css - 샤론파스몰 레이아웃 엔진 */

body { font-family: 'Inter', sans-serif; background-color: #ffffff; color: #1d1d1f; -webkit-font-smoothing: antialiased; margin: 0; padding: 0; }

/* 네비게이션 */
.apple-nav { background: rgba(255, 255, 255, 0.85); backdrop-filter: saturate(180%) blur(20px); border-bottom: 1px solid rgba(0,0,0,0.05); }

/* 카드 공통 */
.apple-card { border-radius: 28px; background: #fff; border: 1px solid #f2f2f7; box-shadow: 0 10px 30px rgba(0,0,0,0.02); overflow: hidden; }

/* 이미지 스티키 컨테이너 */
.image-sticky-box {
    position: sticky;
    top: 100px;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fbfbfd;
    border-radius: 28px;
    padding: 40px;
}

/* 인풋 디자인 고정 */
.input-apple {
    width: 100%; 
    height: 56px !important; 
    padding: 0 18px !important; 
    border: 1.5px solid #d2d2d7 !important; 
    border-radius: 14px !important;
    font-size: 16px !important;
    color: #1d1d1f !important;
    outline: none;
    transition: all 0.2s ease-in-out;
    background-color: #ffffff;
    box-sizing: border-box;
}
.input-apple:focus { border-color: #0071e3 !important; box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1) !important; }
.input-readonly { background-color: #f5f5f7 !important; color: #86868b !important; cursor: default; }

/* 장바구니/요약 리스트 가로 고정 */
.cart-item-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #f5f5f7;
    gap: 12px;
}
.item-info { flex: 1; min-width: 0; }
.item-name { font-weight: 600; font-size: 15px; color: #1d1d1f; word-break: keep-all; line-height: 1.3; margin: 0; }
.item-meta { font-size: 11px; color: #86868b; margin-top: 4px; }

/* 버튼 디자인 */
.btn-apple-blue { 
    background: #0071e3; color: #fff; border-radius: 980px; 
    padding: 18px; font-size: 17px; font-weight: bold; 
    text-align: center; display: block; width: 100%; border: none; transition: 0.3s; cursor: pointer;
}
.btn-apple-blue:hover { background: #0077ed; transform: scale(1.01); }
.btn-apple-blue.disabled { background: #d2d2d7; cursor: not-allowed; transform: none; }

/* X 버튼 (레드 서클) */
.remove-btn-circle {
    width: 22px; height: 22px; background-color: #ff3b30; color: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 10px; border: none; cursor: pointer; flex-shrink: 0;
}
/* 동의 섹션 전용 스타일 */
.terms-box {
    background-color: #f5f5f7;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid #d2d2d7;
}
.terms-text-scroll {
    height: 120px;
    overflow-y: auto;
    font-size: 13px;
    line-height: 1.6;
    color: #86868b;
    margin-bottom: 16px;
    padding-right: 10px;
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #e5e5e7;
}
/* 커스텀 체크박스 */
input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    accent-color: #0071e3;
    cursor: pointer;
}