/* ===== 광고 배너 슬라이더 ===== */
.free-banner-wrap {
    position: relative;
    width: 100%;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 32px;
}
.free-banner-slider {
    position: relative;
    width: 100%;
    height: 100%;
}
.free-banner-item {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}
.free-banner-item.active {
    opacity: 1;
    pointer-events: auto;
}
.free-banner-item a {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    color: #fff;
}
.free-banner-tag {
    flex-shrink: 0;
    background: #fff;
    color: #e05c00;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: 20px;
    letter-spacing: 1px;
}
.free-banner-item strong {
    font-size: 17px;
    font-weight: 700;
    white-space: nowrap;
}
.free-banner-item em {
    font-size: 13px;
    font-style: normal;
    opacity: 0.85;
    white-space: nowrap;
}
.free-banner-dots {
    position: absolute;
    bottom: 8px;
    right: 16px;
    display: flex;
    gap: 6px;
}
.free-banner-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    cursor: pointer;
    transition: background 0.3s;
}
.free-banner-dot.active {
    background: #fff;
}

/* ===== 카드 무료 배지 ===== */
.pf-card-img-wrap {
    position: relative; /* 기존에 없으면 추가 */
}
.free-card-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #e05c00;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 4px;
    z-index: 2;
    letter-spacing: 0.5px;
}
.free-badge-end {
    background: #999;
}

/* ===== 잔여석 표시 ===== */
.free-remain {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #333;
    margin: 6px 0 2px;
}
.free-remain-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2ecc71;
    animation: freePulse 1.2s infinite;
    flex-shrink: 0;
}
.free-dot-end {
    background: #bbb;
    animation: none;
}
.free-remain-num {
    color: #e05c00;
}
.free-remain-done {
    color: #999;
}
@keyframes freePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(1.4); }
}

/* ===== 무료신청 버튼 ===== */
.free-btn-apply {
    background: #e05c00 !important;
    border-color: #e05c00 !important;
}
.free-btn-apply:hover {
    background: #c04e00 !important;
}
.free-btn-disabled {
    background: #ccc !important;
    border-color: #ccc !important;
    color: #fff !important;
    cursor: not-allowed !important;
    pointer-events: none;
}

/* ===== 반응형 ===== */
@media (max-width: 600px) {
    .free-banner-wrap { height: 80px; }
    .free-banner-item strong { font-size: 14px; }
    .free-banner-item em { display: none; }
}
.free-banner-wrap {
    position: relative;
    width: 100%;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 32px;
}
.free-banner-slider { position: relative; width: 100%; height: 100%; }
.free-banner-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}
.free-banner-item.active { opacity: 1; pointer-events: auto; }

.free-banner-item a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 30px 0 10px;
    text-decoration: none;
    color: #fff;
    gap: 10px;
}

/* 티켓 SVG 영역 - 크고 임팩트 있게 */
.free-banner-coupon {
    flex-shrink: 0;
    width: 140px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.free-banner-coupon svg {
    width: 130px;
    height: 110px;
    filter: drop-shadow(2px 4px 10px rgba(0,0,0,0.35));
}

/* 텍스트 */
.free-banner-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.free-banner-item strong {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.3px;
}
.free-banner-item em {
    font-size: 13px;
    font-style: normal;
    color: rgba(255,255,255,0.8);
}

/* 닷 */
.free-banner-dots {
    position: absolute;
    bottom: 10px;
    right: 18px;
    display: flex;
    gap: 6px;
}
.free-banner-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: background 0.3s;
}
.free-banner-dot.active { background: #fff; }

@media (max-width: 600px) {
    .free-banner-wrap { height: 100px; }
    .free-banner-coupon { width: 100px; height: 100px; }
    .free-banner-coupon svg { width: 95px; height: 85px; }
    .free-banner-item strong { font-size: 15px; }
    .free-banner-item em { display: none; }
}
