/* ─── iKen Announcement Bar ─── */
.ikin-bar {
    display: flex;
    align-items: center;
    background: #c0392b;
    color: #fff;
    font-family: 'Georgia', 'Times New Roman', serif;
    min-height: 56px;
    padding: 10px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

/* Label */
.ikin-label {
    flex-shrink: 0;
    padding: 0 24px 0 20px;
    border-right: 1px solid rgba(255,255,255,0.25);
}
.ikin-label-text {
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.03em;
    white-space: nowrap;
    color: #fff;
}

/* Nav arrows */
.ikin-nav {
    flex-shrink: 0;
    display: flex;
    gap: 6px;
    padding: 0 14px;
}
.ikin-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    border: 1.5px solid rgba(255,255,255,0.6);
    color: #fff;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.15s;
    padding: 0;
}
.ikin-btn:hover {
    background: rgba(255,255,255,0.32);
    transform: scale(1.08);
}
.ikin-btn:active { transform: scale(0.96); }

/* Sliding track */
.ikin-track-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
    padding: 0 16px;
}
.ikin-track {
    position: relative;
}
.ikin-slide {
    display: none;
    align-items: center;
    gap: 16px;
    animation: ikin-fade-in 0.4s ease;
}
.ikin-slide.active {
    display: flex;
}
@keyframes ikin-fade-in {
    from { opacity: 0; transform: translateY(5px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Announcement text */
.ikin-text {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.55;
    color: #fff;
    flex: 1;
}

/* Details button */
.ikin-details-btn {
    flex-shrink: 0;
    display: inline-block;
    background: #fff;
    color: #c0392b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 3px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}
.ikin-details-btn:hover {
    background: #ffe8e8;
    color: #a02020;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    text-decoration: none;
}

/* Dot indicators */
.ikin-dots {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 16px 0 4px;
}
.ikin-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    transition: background 0.25s, transform 0.25s;
    cursor: pointer;
}
.ikin-dot.active {
    background: #fff;
    transform: scale(1.25);
}

/* Mobile */
@media (max-width: 600px) {
    .ikin-bar { flex-wrap: wrap; }
    .ikin-label { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.25); width: 100%; padding: 8px 16px; }
    .ikin-nav { padding: 8px 8px 0; }
    .ikin-track-wrapper { padding: 8px 12px; order: 3; width: 100%; }
    .ikin-slide { flex-wrap: wrap; }
    .ikin-details-btn { margin-top: 6px; width: 100%; text-align: center; }
    .ikin-dots { display: none; }
}

/* Icon */
.ikin-icon {
    font-size: 17px;
    margin-right: 6px;
    opacity: 0.9;
    vertical-align: middle;
}
