
        /* ÀüÃ¼ ÄÁÅ×ÀÌ³Ê: 250 + 10 + 1040 = 1300px */
        .mypage-wrapper {
            display: flex;
            width: 1200px; 
            gap: 10px;
        }

        /* »çÀÌµå¹Ù (170px °íÁ¤) */
        .sidebar {
                width: 170px;
            background-color: #ffffff;
            padding: 30px 15px;
            border: 1px solid #edf0f2;
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            flex-shrink: 0;
            height: fit-content;
        }

        .sidebar .logo {
            font-size: 1rem;
            font-weight: 800;
            margin-bottom: 30px;
            color: #111;
            text-align: center;
            text-transform: uppercase;
        }

        .sidebar nav ul {
            list-style: none;
        }

        .sidebar nav ul li {
            margin-bottom: 5px;
        }

        .sidebar nav ul li a {
            text-decoration: none;
            color: #777;
            font-size: 0.85rem;
            font-weight: 500;
            display: block;
            padding: 10px 12px;
            border-radius: 8px;
            transition: all 0.2s ease;
        }

        .sidebar nav ul li.active a,
        .sidebar nav ul li a:hover {
            color: #ff5a5f;
            background-color: #fff5f5;
            font-weight: 600;
        }

        .sidebar .exit-menu {
            margin-top: 50px;
            padding-top: 15px;
            border-top: 1px solid #f0f0f0;
            text-align: center;
        }

        .sidebar .exit-menu a {
            color: #bbb;
            font-size: 0.75rem;
            text-decoration: none;
        }

        .sidebar .exit-menu a:hover {
            color: #ff5a5f;
        }

        /* ¸ÞÀÎ ÄÜÅÙÃ÷ (1020px °íÁ¤) */
        .main-content {
            width: 1020px;
            background-color: #ffffff;
            padding: 40px 50px;
            border: 1px solid #edf0f2;
            border-radius: 12px;
            flex-shrink: 0;
        }

        .content-header {
            margin-bottom: 35px;
            border-bottom: 2px solid #f4f6f8;
            padding-bottom: 20px;
        }

        .content-header h1 {
            font-size: 1.8rem;
            color: #111;
            font-weight: 700;
        }

        .user-name {
            color: #ff5a5f;
        }

        /* ¿ä¾à Ä«µå ±×¸®µå */
        .summary-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 15px;
            margin-bottom: 40px;
        }

        .summary-card {
            background-color: #fcfcfc;
            padding: 20px 10px;
            border-radius: 12px;
            border: 1px solid #edf0f2;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-height: 130px;
        }

        .summary-card.highlight {
            background-color: #ff5a5f;
            border: none;
            box-shadow: 0 8px 16px rgba(255, 90, 95, 0.2);
        }

        .summary-card.highlight h3 { color: rgba(255, 255, 255, 0.8); }
        .summary-card.highlight .value { color: #ffffff; font-size: 1.6rem; }

        .summary-card h3 {
            font-size: 0.8rem;
            color: #888;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .summary-card .value {
            font-size: 1.4rem;
            font-weight: 800;
            color: #111;
        }

        .btn-point-mall {
            display: inline-block;
            margin-top: 10px;
            font-size: 0.75rem;
            color: #ff5a5f;
            background-color: #ffffff;
            text-decoration: none;
            padding: 4px 10px;
            border-radius: 6px;
            font-weight: 600;
        }

        /* ¼½¼Ç Å¸ÀÌÆ² ¹× Å×ÀÌºí (±âº» ·¹ÀÌ¾Æ¿ô À¯Áö) */
        .order-section {
            margin-bottom: 50px;
        }

        .section-title {
            margin-bottom: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .section-title h2 {
            font-size: 1.1rem;
            font-weight: 700;
        }

        .order-table {
            width: 100%;
            border-collapse: collapse;
        }

        .order-table th {
            text-align: left;
            padding: 12px;
            font-size: 0.8rem;
            color: #aaa;
            border-bottom: 1px solid #f0f0f0;
        }

        .order-table td {
            padding: 18px 12px;
            border-bottom: 1px solid #f8f8f8;
            font-size: 0.9rem;
        }

        /* »óÅÂº° ¹îÁö ½ºÅ¸ÀÏ */
        .status {
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .status.received { background-color: #f0f0f0; color: #555; }
        .status.shipping { background-color: #fff5f5; color: #ff5a5f; }
        .status.completed { background-color: #e7f9f7; color: #00bfa5; }

        /* Àû¸³±Ý °­Á¶ ÅØ½ºÆ® */
        .point-val {
            color: #ff5a5f;
            font-weight: 600;
        }

		
/* ÁÖ¹® ÇÁ·Î¼¼½º ¿ä¾à ¹Ù */
.order-step-bar {
	display: flex; justify-content: space-around;
	background-color: #fcfcfc; border: 1px solid #edf0f2;
	border-radius: 12px; padding: 25px 10px; margin-bottom: 15px;
}
.step-item { text-align: center; position: relative; flex: 1; }
.step-item:not(:last-child)::after {
	content: '>'; position: absolute; right: -5px; top: 15px; color: #ddd; font-weight: 300;
}
.step-item .count { display: block; font-size: 1.4rem; font-weight: 800; color: #111; margin-bottom: 5px; }
.step-item .label { font-size: 0.8rem; color: #888; font-weight: 500; }
.step-item.active .count { color: #111; }

/* --- °³¼±µÈ Ãë¼Ò ÇöÈ² ¿ä¾à (cancel-summary) --- */
.cancel-summary {
	display: flex; justify-content: flex-end; gap: 10px;
	margin-bottom: 40px; padding-right: 5px;
}
.cancel-box {
	display: flex; align-items: center;
	padding: 6px 14px; background-color: #f8f9fa;
	border: 1px solid #edf0f2; border-radius: 20px;
	font-size: 0.8rem; color: #666;
}
.cancel-box b { color: #111; margin-left: 6px; font-weight: 700; }
/* Ãë¼Ò¿äÃ» °­Á¶»ö */
.cancel-box.highlight b { color: #ff5a5f; }

/* ÁÖ¹® Å×ÀÌºí ½ºÅ¸ÀÏ */
.order-table-mypage { width: 100%; border-collapse: collapse; text-align: center; }
.order-table-mypage th {
	padding: 15px 10px; border-bottom: 1px solid #111;
	font-size: 0.85rem; font-weight: 700; color: #333; background-color: #fafafa;    text-align: center;
}
.order-table-mypage td { padding: 20px 10px; border-bottom: 1px solid #f4f6f8; font-size: 0.85rem; color: #555; vertical-align: middle;     text-align: center;}

/* ¹öÆ° ½ºÅ¸ÀÏ */
.btn-sm {
	display: inline-block; padding: 6px 12px; border-radius: 4px;
	font-size: 0.75rem; font-weight: 600; text-decoration: none;
	cursor: pointer; border: 1px solid #ddd; background: white; color: #666;
}
.btn-view { border-color: #ff5a5f; color: #ff5a5f; }
.btn-view:hover { background: #fff5f5; }
.btn-chat { background: #ff5a5f; color: white; border: none; }
.btn-chat:hover { background: #e04a4f; }

/* ÁÖ¹® »óÅÂ ¹îÁö (¿äÃ»ÇÏ½Å ±×·¹ÀÌ Å×¸¶ ÅëÀÏ) */
.status-badge { 
	padding: 5px 10px; border-radius: 4px; 
	font-size: 0.75rem; font-weight: 600;
	background-color: #f0f0f0; color: #555; 
	display: inline-block; white-space: nowrap;
}

     /* --- ¾÷µ¥ÀÌÆ®µÈ Àû¸³±Ý ¿ä¾à Ä«µå --- */
        .point-summary {
            display: flex; background-color: #fcfcfc; border: 1px solid #edf0f2;
            border-radius: 12px; padding: 30px 50px; margin-bottom: 40px; 
            align-items: center; justify-content: space-between;
        }
        .point-info { display: flex; flex-direction: column; }
        .point-info .label { font-size: 0.9rem; color: #888; margin-bottom: 5px; }
        .point-info .value { font-size: 2.2rem; font-weight: 800; color: #111; }
        .point-info .value span { font-size: 1.2rem; margin-left: 5px; color: #333; }
        .point-info .value.highlight { color: #ff5a5f; }

        /* Æ÷ÀÎÆ®¸ô ¹Ù·Î°¡±â ¹öÆ° */
        .reserve-btn-point-mall {
            padding: 15px 30px; background-color: #ff5a5f; color: #fff;
            text-decoration: none; border-radius: 8px; font-size: 0.9rem;
            font-weight: 600; transition: all 0.2s; display: flex; align-items: center; gap: 8px;
        }
        .reserve-btn-point-mall:hover { background-color: #333; transform: translateY(-2px);     
}
        .reserve-btn-point-mall::after { content: '¡æ'; font-size: 1.1rem; }

        /* Å×ÀÌºí ½ºÅ¸ÀÏ */
        .point-table { width: 100%; border-collapse: collapse; text-align: center; }
        .point-table th {
            padding: 15px 10px; border-bottom: 1px solid #111;    text-align: center;
            font-size: 0.85rem; font-weight: 700; color: #333; background-color: #fafafa;
        }
        .point-table td { padding: 18px 10px; border-bottom: 1px solid #f4f6f8; font-size: 0.85rem; color: #555; vertical-align: middle; }

        .type-badge {
            padding: 4px 10px; border-radius: 4px; font-size: 0.75rem; font-weight: 600;
            background-color: #f0f0f0; color: #555;
        }
        
        .amt-plus { color: #00bfa5; font-weight: 700; }
        .amt-minus { color: #ff5a5f; font-weight: 700; }



        /* ÄÁÆ®·Ñ ¹öÆ° (¼±ÅÃ»èÁ¦) */
        .list-control {
            display: flex; justify-content: space-between; align-items: center;
            margin-bottom: 15px;
        }
        .btn-action {
            padding: 8px 18px; border-radius: 6px; font-size: 0.8rem; font-weight: 600;
            cursor: pointer; border: 1px solid #ddd; background: #fff; color: #555;
            transition: all 0.2s;
        }
        .btn-action:hover { border-color: #bbb; background: #f9f9f9; color: #111; }

        /* °ü½É»óÇ° Å×ÀÌºí */
        .wish-table { width: 100%; border-collapse: collapse; text-align: center; }
        .wish-table th {
            padding: 15px 10px; border-bottom: 1px solid #111;
            font-size: 0.85rem; font-weight: 700; color: #333; background-color: #fafafa;    text-align: center;
        }
        .wish-table td { padding: 20px 10px; border-bottom: 1px solid #f4f6f8; font-size: 0.85rem; color: #555; vertical-align: middle; }

        /* »óÇ° Á¤º¸ ¼¿ ·¹ÀÌ¾Æ¿ô */
        .product-info-cell { display: flex; align-items: center; text-align: left; gap: 15px; }
        .product-img { width: 60px; height: 60px; background-color: #f7f7f7; border-radius: 6px; flex-shrink: 0; object-fit: cover; border: 1px solid #eee; }
        .product-name { font-weight: 600; color: #111; font-size: 0.9rem; }
		
		.wish_checkbox{width: 16px; height: 16px; cursor: pointer; accent-color: #ff5a5f;}


		
/* ¹®ÀÇÇÏ±â ¹öÆ° */
        .qnabtn-inquiry {
            padding: 10px 24px; background-color: #111; color: #fff;
            text-decoration: none; border-radius: 8px; font-size: 0.85rem;
            font-weight: 600; transition: all 0.2s;    float: right;
    margin-top: -35px;
        }
        .qnabtn-inquiry:hover { background-color: #333; }

        /* »ó´ã ³»¿ª Å×ÀÌºí */
        .qna-table { width: 100%; border-collapse: collapse; text-align: center; }
        .qna-table th {
            padding: 15px 10px; border-bottom: 1px solid #111;    
            font-size: 0.85rem; font-weight: 700; color: #333; background-color: #fafafa;text-align: center;
        }
        .qna-table td { padding: 20px 10px; border-bottom: 1px solid #f4f6f8; font-size: 0.85rem; color: #555; vertical-align: middle; }

        /* Á¦¸ñ ¿ÞÂÊ Á¤·Ä */
        .qna-title { text-align: left; padding-left: 20px !important; }
        .qna-title a { text-decoration: none; color: #333; font-weight: 500; transition: color 0.2s; }
        .qna-title a:hover { color: #ff5a5f; }

        /* Ã³¸®ÇöÈ² ¹îÁö */
        .status-badge {
            padding: 4px 10px; border-radius: 4px; font-size: 0.75rem; font-weight: 600;
            display: inline-block;
        }
        .status-waiting { background-color: #f0f0f0; color: #888; }
        .status-complete { background-color: #fff5f5; color: #ff5a5f; }
		
		