/* HoneyEvent Widget Styles */
#honey-event {
    background: #000 url(/images/honey_bg.png) no-repeat center / cover;
    background-attachment: fixed; /* 배경 고정 */
    padding: 110px 0 120px;
    margin: 0 auto;
    position: relative; /* 컨테이너 위치 고정 */
}

#honey-event .container {
    width: var(--base-width);
    background-color: var(--bg-white);
    padding: 130px 0;
    border-radius: 10px;
}

/* Honey Events Container - 두 이벤트를 포함하는 컨테이너 */
.honey-events-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.event-section .container {
    width: var(--base-width);
    background-color: var(--bg-white);
    padding: 130px 0;
    border-radius: 10px;
    margin: 0 auto;
    position: relative; /* 컨테이너 위치 고정 */
    z-index: 1; /* 레이어 순서 보장 */
}

.event-header {
    text-align: center;
    margin-bottom: 30px;
}

.event-number {
    position: relative;
    display: inline-block;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: -0.55px;
    margin-bottom: 26px;
}

.event-number::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    width: 100%;
    height: 1px;
    background-color: var(--bg-black);
}


.main-offer {
    display: block;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.6px;
    margin-bottom: 9px;
}

.event-title {
    text-align: center;
    font-size: 65px;
    font-weight: 700;
    line-height: 100%;
}

.event-title .highlight {
    color: var(--primary-color);
    font-style: normal;
}

.main-offer .highlight {
    color: var(--primary-color);
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 40px;
    width: 241px;
    text-align: left;
    margin: 9px auto 0 auto;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.45px;
}

.detail-item .title {
    position: relative;
    font-weight: 500;
    color: var(--text-black);
    margin: 0;
    padding-right: 10px;
}

.detail-item .title::after {
    position : absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    display: block;
    width: 1px;
    height: 12px;
    background-color: var(--bg-black);
}

.detail-item .description {
    margin: 0;
    color: #666;
}

.offers-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.offer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background: #fafafa;
}

.offer-section.soldout {
    opacity: 0.7;
    background: #f5f5f5;
}

.offer-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
}

.time-dot {
    width: 8px;
    height: 8px;
    background: #ff3203;
    border-radius: 50%;
    margin-right: 10px;
}

.offer-info {
    flex: 1;
}

.offer-time {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.offer-limit {
    font-size: 14px;
    color: #666;
}


.status-text {
    font-size: 12px;
    color: #ccc;
    margin-bottom: 4px;
}

.sub-text {
    font-size: 11px;
    color: #999;
}

.amount {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.brand {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    background: #34495e;
    padding: 8px 4px;
    border-radius: 4px;
}
