/**
 * TravelWing 마이페이지 쿠폰함 스타일
 */

.travelwing-coupons-page {
    max-width: 800px;
}

.travelwing-coupons-page h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1e1b4b;
    margin-bottom: 10px;
}

.coupon-description {
    color: #6b7280;
    margin-bottom: 30px;
}

/* 쿠폰 없을 때 */
.no-coupons {
    text-align: center;
    padding: 60px 20px;
    background: #f9fafb;
    border-radius: 16px;
    border: 2px dashed #e5e7eb;
}

.no-coupon-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.no-coupons p {
    color: #6b7280;
    font-size: 16px;
    margin: 10px 0;
}

.no-coupon-hint a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
}

.no-coupon-hint a:hover {
    text-decoration: underline;
}

/* 쿠폰 섹션 */
.coupon-section {
    margin-bottom: 40px;
}

.coupon-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1e1b4b;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
}

/* 쿠폰 리스트 */
.coupon-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* 쿠폰 아이템 */
.coupon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.coupon-item:hover {
    border-color: #6366f1;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
}

.coupon-item.lucky {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-color: #f59e0b;
}

.coupon-item.used {
    background: #f3f4f6;
    border-color: #d1d5db;
    opacity: 0.7;
}

.coupon-left {
    flex: 1;
}

.coupon-type-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    background: #6366f1;
    color: #fff;
    margin-bottom: 10px;
}

.coupon-item.lucky .coupon-type-badge {
    background: #f59e0b;
}

.coupon-code-display {
    font-size: 22px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    color: #1e1b4b;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.coupon-message {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 5px;
}

.coupon-date {
    font-size: 12px;
    color: #9ca3af;
}

.coupon-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.coupon-copy-code {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: #6366f1;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.coupon-copy-code:hover {
    background: #4f46e5;
}

.coupon-delete {
    padding: 8px 16px;
    font-size: 12px;
    color: #ef4444;
    background: transparent;
    border: 1px solid #ef4444;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.coupon-delete:hover {
    background: #ef4444;
    color: #fff;
}

.used-badge {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    background: #e5e7eb;
    border-radius: 8px;
}

/* 안내 박스 */
.coupon-notice-box {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 12px;
    padding: 20px 25px;
    margin-top: 30px;
}

.coupon-notice-box h4 {
    font-size: 16px;
    font-weight: 600;
    color: #0369a1;
    margin: 0 0 15px 0;
}

.coupon-notice-box ul {
    margin: 0;
    padding-left: 20px;
}

.coupon-notice-box li {
    font-size: 14px;
    color: #0c4a6e;
    margin-bottom: 8px;
    line-height: 1.6;
}

/* 반응형 */
@media (max-width: 640px) {
    .coupon-item {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .coupon-right {
        flex-direction: row;
        justify-content: flex-end;
    }
    
    .coupon-code-display {
        font-size: 18px;
    }
}
