@media (max-width: 600px) {
    .lens-promo-card {
        position: fixed;
        top: 50% !important;
        left: 50%;
        right: auto !important;
        transform: translate(-50%, -50%) !important;
        width: 96vw;
        max-width: 99vw;
        border-radius: 14px;
        padding: 14px 8px 18px 8px;
        box-shadow: 0 4px 24px rgba(0,0,0,0.18);
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: auto;
        max-height: 80vh;
        z-index: 99999 !important;
        overflow: visible;
    }
    .lens-promo-card .promo-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        margin-bottom: 8px;
        position: relative;
    }
    .lens-promo-card .promo-nav-btn {
        background: none;
        border: none;
        font-size: 2rem;
        color: #d4af37;
        cursor: pointer;
        z-index: 1001;
        padding: 0 8px;
        height: 40px;
        display: flex;
        align-items: center;
    }
    .lens-promo-card .promo-close-btn {
        position: absolute;
        top: 0;
        right: 0;
        background: none;
        border: none;
        font-size: 2rem;
        color: #d4af37;
        cursor: pointer;
        z-index: 1002;
        padding: 0 8px;
        height: 40px;
        display: flex;
        align-items: center;
    }
    .lens-promo-card img {
        width: 100%;
        max-width: 220px;
        margin-bottom: 0;
        max-height: 32vh;
        display: block;
        z-index: 1;
    }
    .lens-promo-card img {
        width: 100%;
        max-width: 220px;
        margin-bottom: 0;
        max-height: 32vh;
        display: block;
    }
    .lens-promo-card .promo-title {
        font-size: 0.98rem;
        margin-bottom: 0;
    }
    .lens-promo-card .promo-desc {
        font-size: 0.91rem;
        margin-bottom: 0;
    }
    .lens-promo-card .close-btn {
        width: 100%;
        font-size: 0.98rem;
        margin-top: 0;
    }
}
/* Tarihi Lens promo kartı için animasyon ve stil */
.lens-promo-card {
    position: fixed;
    top: 50%;
    right: 32px;
    left: auto;
    transform: translateY(-50%);
    z-index: 900;
    background: rgba(10,10,10,0.92);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    padding: 18px 16px 24px 16px;
    max-width: 340px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    transition: max-height 0.5s, opacity 0.5s;
    overflow: hidden;
    opacity: 1;
    max-height: 600px;
}
.lens-promo-card .promo-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-bottom: 8px;
    position: relative;
}
.lens-promo-card .promo-nav-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: #d4af37;
    cursor: pointer;
    z-index: 1001;
    padding: 0 8px;
    height: 40px;
    display: flex;
    align-items: center;
}
.lens-promo-card .promo-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #d4af37;
    cursor: pointer;
    z-index: 1002;
    padding: 0 8px;
    height: 40px;
    display: flex;
    align-items: center;
}
@media (min-width: 601px) {
    .lens-promo-card .promo-nav {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 8px;
        margin-bottom: 0;
        justify-content: center;
        width: 100%;
    }
    .lens-promo-card .promo-nav-btn {
        font-size: 1.5rem;
        height: 32px;
        padding: 0 6px;
    }
    .lens-promo-card .promo-close-btn {
        top: 12px;
        right: 12px;
        font-size: 1.7rem;
        height: 32px;
        padding: 0 6px;
    }
}
.lens-promo-card.closed {
    opacity: 0;
    max-height: 0;
    pointer-events: none;
}
.lens-promo-card img {
    width: 90%;
    max-width: 160px;
    border-radius: 8px;
    margin-bottom: 10px;
    border: 2px solid #d4af37;
    animation: lensShake 1.2s infinite;
}
@keyframes lensShake {
    0%, 100% { transform: scale(1); }
    10% { transform: scale(1.05) rotate(-2deg); }
    20% { transform: scale(1.08) rotate(2deg); }
    30% { transform: scale(1.05) rotate(-2deg); }
    40% { transform: scale(1.08) rotate(2deg); }
    50% { transform: scale(1); }
}
.lens-promo-card .promo-title {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    font-size: 1.1rem;
    margin-bottom: 6px;
}
.lens-promo-card .promo-desc {
    color: #fff;
    font-family: 'Fauna One', serif;
    font-size: 0.97rem;
    margin-bottom: 4px;
}
.lens-promo-card .close-btn {
    background: #d4af37;
    color: #181818;
    border: none;
    border-radius: 6px;
    padding: 6px 18px;
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    cursor: pointer;
    margin-top: 4px;
    transition: background 0.3s;
}
.lens-promo-card .close-btn:hover {
    background: #8b0000;
    color: #fff;
}
