:root{--page-title-display:none;}/* Start custom CSS *//* 캔버스 제한 */
body {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #ffffff;
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }
}

.luxury-review {
    font-family: 'Noto Sans KR', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    padding: 0;
    color: #000000;
    background: transparent;
    border: none;
    border-radius: 0;
}

.luxury-review h1 {
    color: #000000;
    font-size: 1.5em;
    margin: 20px 0 16px 0;
    font-weight: 700;
    text-align: left;
    padding: 16px 24px;
    background: #000000;
    color: #ffffff;
    border-radius: 0;
    letter-spacing: -0.5px;
}

.luxury-review h2 {
    color: #000000;
    font-size: 1.3em;
    margin: 16px 0 12px 0;
    padding: 12px 20px;
    background: #f8f8f8;
    border: 2px solid #000000;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.luxury-review h3 {
    color: #000000;
    font-size: 1.1em;
    margin: 14px 0 10px 0;
    font-weight: 600;
    padding-bottom: 8px;
    border-bottom: 2px solid #000000;
    display: inline-block;
    min-width: 200px;
}

.luxury-review h4 {
    color: #000000;
    font-size: 1.0em;
    margin: 12px 0 8px 0;
    font-weight: 600;
    background: #ffffff;
    padding: 10px 16px;
    border: 1px solid #000000;
    border-radius: 0;
}

.luxury-review p {
    margin-bottom: 14px;
    text-align: justify;
    font-size: 15px;
    line-height: 1.7;
}

.luxury-review a {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #000000;
    padding-bottom: 1px;
}

.luxury-review a:hover {
    background: #000000;
    color: #ffffff;
    padding: 2px 4px;
    margin: -2px -4px;
}

.luxury-review .executive-summary {
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 16px 20px;
    margin: 8px 0;
    border-radius: 0;
    font-weight: 500;
    line-height: 1.6;
}

.luxury-review .key-finding {
    background: #ffffff;
    border: 2px solid #000000;
    padding: 12px 16px;
    margin: 8px 0;
    border-radius: 0;
    position: relative;
}

/* 일반 이미지 및 박스형 컨텐츠 여백 최소화 */
.luxury-review img {
    margin: 4px 0;
    display: block;
    max-width: 100%;
    height: auto;
}

.luxury-review .content-box,
.luxury-review .info-box {
    margin: 6px 0;
    padding: 12px 16px;
}

.luxury-review .key-finding::before {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background: #000000;
}

.luxury-review .metric {
    background: #000000;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 0;
    font-weight: 700;
    font-size: 0.95em;
    margin: 0 4px;
    display: inline-block;
}

.luxury-review .risk-factor {
    background: #ffffff;
    color: #000000;
    padding: 6px 12px;
    border: 2px solid #000000;
    border-radius: 0;
    font-weight: 700;
    font-size: 0.95em;
    margin: 0 4px;
    display: inline-block;
}

/* 쿠폰 카드 스타일 - luxury 스타일로 변경 */
.coupon-card {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 0;
    padding: 16px;
    margin: 12px 0;
    box-shadow: 4px 4px 0px #000000;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.coupon-card:hover {
    box-shadow: 6px 6px 0px #000000;
    transform: translate(-2px, -2px);
}

.coupon-image {
    width: 70px;
    height: 70px;
    border-radius: 0;
    object-fit: cover;
    margin-right: 16px;
    flex-shrink: 0;
    border: 2px solid #000000;
}

.coupon-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.coupon-title {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 6px;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.coupon-description {
    font-size: 13px;
    color: #333333;
    line-height: 1.5;
    font-weight: 400;
}

.coupon-button {
    background: #000000;
    color: #ffffff;
    border: 2px solid #000000;
    border-radius: 0;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: 12px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 70px;
}

.coupon-button:hover {
    background: #ffffff;
    color: #000000;
    transform: scale(1.05);
}

.coupon-button:active {
    transform: scale(0.95);
}

/* 추가 luxury 스타일 요소들 */
.luxury-review .highlight-box {
    background: #ffffff;
    border: 3px solid #000000;
    padding: 16px;
    margin: 16px 0;
    position: relative;
}

.luxury-review .highlight-box::after {
    content: '';
    position: absolute;
    top: -3px;
    right: -3px;
    bottom: -3px;
    left: -3px;
    border: 3px solid #000000;
    z-index: -1;
    transform: translate(8px, 8px);
}

.luxury-review .price-tag {
    background: #000000;
    color: #ffffff;
    padding: 6px 14px;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    margin: 6px 0;
    position: relative;
}

.luxury-review .price-tag::before {
    content: '';
    position: absolute;
    top: 0;
    right: -8px;
    width: 0;
    height: 0;
    border-left: 8px solid #000000;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
}

/* 모바일 대응 */
@media (max-width: 768px) {
    .luxury-review h1 {
        font-size: 1.3em;
        padding: 14px 18px;
        margin: 16px 0 12px 0;
    }
    
    .luxury-review h2 {
        font-size: 1.2em;
        padding: 10px 14px;
        margin: 12px 0 10px 0;
    }
    
    .luxury-review h3 {
        font-size: 1.05em;
        min-width: 150px;
        margin: 12px 0 8px 0;
    }
    
    .coupon-card {
        padding: 12px;
        margin: 10px 0;
        box-shadow: 3px 3px 0px #000000;
    }
    
    .coupon-card:hover {
        box-shadow: 4px 4px 0px #000000;
        transform: translate(-1px, -1px);
    }
    
    .coupon-image {
        width: 60px;
        height: 60px;
        margin-right: 12px;
    }
    
    .coupon-title {
        font-size: 15px;
    }
    
    .coupon-description {
        font-size: 12px;
    }
    
    .coupon-button {
        padding: 8px 12px;
        font-size: 11px;
        margin-left: 8px;
        min-width: 60px;
    }
    
    .luxury-review .executive-summary {
        padding: 12px 16px;
        margin: 10px 0;
    }
    
    .luxury-review .key-finding {
        padding: 10px 12px;
        margin: 10px 0;
    }
    
    .luxury-review p {
        margin-bottom: 12px;
    }
}

.faq-container {
    margin: 20px 0;
}

.faq-item {
    border: 2px solid #000000;
    margin-bottom: 8px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 4px 4px 0px #000000;
    transform: translate(-2px, -2px);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    background: #ffffff;
    border-bottom: none;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8f8f8;
}

.faq-question.active {
    background: #000000;
    color: #ffffff;
}

.faq-icon {
    font-size: 24px;
    font-weight: 700;
    transition: transform 0.3s ease;
    width: 30px;
    text-align: center;
}

.faq-icon.rotate {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #f8f8f8;
    border-top: 2px solid #000000;
}

.faq-answer.active {
    max-height: 500px;
    padding: 20px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.7;
    font-size: 15px;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 16px;
        font-size: 15px;
    }
    
    .faq-answer.active {
        padding: 16px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }/* End custom CSS */