/* HoneyCoupon Component Styles */
:root {
    /* 쿠폰 이미지 크기 변수 */
    --coupon-image-large: 400px;
    --coupon-image-xl: 500px;
}
.coupon-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 0 auto;
    margin-top: 24px;
}

.coupon-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 12px;
}


.coupon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-radius: 8px;
}

.coupon-image {
    width: 100%;
    max-width: var(--coupon-image-large);
    height: auto;
    display: block;
    border-radius: 8px;
}

/* xl 버튼을 사용하는 섹션의 쿠폰 이미지 크기 조정 */
.event-2 .coupon-image {
    max-width: var(--coupon-image-xl);
}

.coupon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.overlay-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #fff;
}

.coming-soon {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.coming-soon-text {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1;
}

.thank-you-overlay {
    background: rgba(0, 0, 0, 0.7);
}

.thank-you {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
}

.thank-you-text {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1;
}

.amount {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.cta-button {
    display: block;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    text-align: left;
    transition: background-color 0.3s ease;
}

.cta-button--large {
    width: var(--coupon-width);
    height: 75px;
    font-size: 18px;
    padding-left: 36px;
    margin: 19px auto 0;
}

.cta-button--xl {
    width: 457px;
    height: 90px;
    font-size: 21px;
    padding-left: 40px;
    margin: 19px auto 0;
}

.cta-button--default {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cta-button:hover:not(.disabled) {
    background: #333;
}

.cta-button.disabled {
    /* background: #ccc; */
    cursor: not-allowed;
}

.arrow {
    width: 28px; 
    height: 28px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.cta-button--large .arrow {
    position: absolute;
    right: 36px;
    top: 50%;
    transform: translateY(-50%);
}

.cta-button--xl .arrow {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
}

.cta-button--default .arrow {
    margin-left: 8px;
}

.cta-button:hover:not(.disabled) .arrow {
    transform: translateY(-50%) translateY(2px);
}

.cta-button--default:hover:not(.disabled) .arrow {
    transform: translateY(2px);
}


