.promo-hero {
    width: 100%;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
}
.promo-hero img {
    width: 100%;
    display: block;
    object-fit: contain;
}
.promo-hero-placeholder {
    width: 100%;
    min-height: 420px;
    background: linear-gradient(135deg, #111 0%, #2a1500 50%, #111 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.hero-badge { display: inline-block; background: var(--zlato); color: #111; font-size: 10px; font-weight: 700; letter-spacing: 4px; padding: 6px 20px; margin-bottom: 1.25rem; }
.hero-title { color: white; font-size: 40px; font-weight: 700; letter-spacing: 6px; margin-bottom: 0.5rem; text-align: center; }
.hero-title span { color: var(--zlato); }
.hero-sub { color: #aaa; font-size: 13px; letter-spacing: 3px; }
.hero-line { width: 50px; height: 2px; background: var(--zlato); margin: 1.25rem auto 0; }

.promo-section { padding: 4rem 2rem; max-width: 1200px; margin: 0 auto; }
.promo-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1rem; }
.promo-header-left .sec-label { font-size: 12px; letter-spacing: 4px; color: var(--zlato); font-weight: 700; margin-bottom: 4px; }
.promo-header-left .sec-title { font-size: 24px; font-weight: 700; color: #111; }
.promo-header-left .sec-line { width: 40px; height: 2px; background: var(--zlato); margin-top: 8px; }

.filter-wrap { display: flex; gap: 6px; flex-wrap: wrap; }
.filter-btn { background: #f5f5f5; border: 1px solid #eee; color: #666; font-size: 11px; letter-spacing: 1px; padding: 7px 18px; cursor: pointer; transition: all 0.2s; font-family: inherit; }
.filter-btn:hover, .filter-btn.active { background: var(--zlato); color: #111; border-color: var(--zlato); font-weight: 700; }

.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(25px); }
    to   { opacity: 1; transform: translateY(0); }
}

.promo-card {
    background: white;
    border: 1px solid #eee;
    border-top: 3px solid var(--zlato);
    overflow: hidden;
    cursor: pointer;
    animation: fadeUp 0.5s ease forwards;
    opacity: 0;
}
.promo-card:nth-child(1) { animation-delay: 0.05s; }
.promo-card:nth-child(2) { animation-delay: 0.15s; }
.promo-card:nth-child(3) { animation-delay: 0.25s; }
.promo-card:nth-child(4) { animation-delay: 0.35s; }
.promo-card:nth-child(5) { animation-delay: 0.45s; }
.promo-card:nth-child(6) { animation-delay: 0.55s; }
.promo-card:nth-child(n+7) { animation-delay: 0.65s; }

/* ВИДЕО КАРТИЧКА — без hover ефект */
.promo-card.is-video { cursor: default; }
.promo-card.is-video .card-overlay { display: none; }
.promo-card.is-video:hover .card-media video { transform: none; }

.card-media {
    width: 100%;
    position: relative;
    background: #111;
    overflow: hidden;
}
.card-media img {
    width: 100%;
    display: block;
    object-fit: contain;
    background: #111;
    transition: transform 0.4s ease;
}
.card-media video {
    width: 100%;
    display: block;
    background: #111;
}
.promo-card:hover .card-media img {
    transform: scale(1.03);
}

.card-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(17, 17, 17, 0.82);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.promo-card:hover .card-overlay { opacity: 1; }

.overlay-naslov {
    color: var(--zlato);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    line-height: 1.4;
}
.overlay-tekst {
    color: #ddd;
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 12px;
}
.overlay-datum {
    color: #aaa;
    font-size: 11px;
    letter-spacing: 1px;
    border-top: 1px solid rgba(201,168,76,0.3);
    padding-top: 10px;
}

.pin-badge {
    position: absolute;
    top: -10px;
    right: 5px;
    background: rgba(0,0,0,0);
    color: var(--zlato);
    font-size: 20px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 2;
}

.card-footer {
    padding: 10px 14px;
    display: flex;
    align-items: center;
    border-top: 1px solid #f0f0f0;
}
.card-tip { font-size: 9px; font-weight: 700; letter-spacing: 2px; padding: 3px 10px; }
.tip-akcija    { background: #c0392b; color: white; }
.tip-promocija { background: var(--zlato); color: #111; }
.tip-novost    { background: #111; color: var(--zlato); }
.tip-sezonska  { background: #2c5aa0; color: white; }
.tip-video     { background: #555; color: white; }

.no-objavi { text-align: center; padding: 4rem; color: #999; grid-column: 1/-1; }
.no-objavi i { font-size: 48px; color: #ddd; display: block; margin-bottom: 1rem; }

@media (max-width: 768px) {
    .cards-grid { grid-template-columns: 1fr; }
    .promo-header { flex-direction: column; align-items: flex-start; }
    .hero-title { font-size: 26px; }
    .card-overlay { opacity: 0; }
}

/* Fade in анимација */
.promo-card {
    opacity: 0;
    transform: translateY(-60px);
}

.promo-card.fade-in {
    animation: cardBounce 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes cardBounce {
    0%   { opacity: 0; transform: translateY(-60px); }
    50%  { opacity: 1; transform: translateY(10px); }
    70%  { transform: translateY(-6px); }
    85%  { transform: translateY(4px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Expiry badge */
.expiry-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e74c3c;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 5;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(231,76,60,0.6); }
    70%  { box-shadow: 0 0 0 8px rgba(231,76,60,0); }
    100% { box-shadow: 0 0 0 0 rgba(231,76,60,0); }
}

/* Сподели копчиња */
.share-btns {
    display: flex;
    gap: 6px;
    margin-left: auto;
}

.share-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.share-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.share-fb     { background: #1877f2; }
.share-viber  { background: #7360f2; }
.share-wa     { background: #25d366; }