/*
Theme Name: Photo Grid Pro
Theme URI: https://manus.im
Author: Manus AI
Description: v4.9.2 (Stable Base + Ad Manager) - 2-Column Mobile, 4 Ad Slots.
Version: 4.9.2
License: GNU General Public License v2 or later
Text Domain: photogrid
*/

/* Reset & Base */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { background-color: #000; color: #fff; font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
.container { max-width: 100%; margin: 0 auto; padding: 0 15px; width: 100%; }

/* Fade-in Animation */
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.fade-in-page { animation: fadeIn 0.6s ease-out forwards; }
.fade-in-item { animation: fadeIn 0.5s ease-out forwards; }

/* Header */
.site-header { background: #111; border-bottom: 1px solid #222; position: sticky; top: 0; z-index: 1000; }
.header-flex { display: flex; align-items: center; justify-content: space-between; height: 60px; gap: 20px; }
.site-title a { font-size: 22px; font-weight: 900; color: #fff; text-transform: uppercase; letter-spacing: -1px; }
.site-title a:hover { color: #ff4081; }

/* Search Bar */
.search-bar { flex: 1; max-width: 600px; }
.search-bar form { display: flex; background: #222; border: 1px solid #333; border-radius: 20px; overflow: hidden; padding: 2px 5px; }
.search-bar input { flex: 1; background: none; border: none; padding: 8px 15px; color: #fff; outline: none; font-size: 14px; }
.search-bar button { background: none; border: none; color: #888; padding: 0 10px; cursor: pointer; display: flex; align-items: center; }
.search-bar button:hover { color: #ff4081; }

/* Category Bar */
.category-bar { background: #111; border-bottom: 1px solid #222; padding: 10px 0; overflow-x: auto; white-space: nowrap; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.category-bar::-webkit-scrollbar { display: none; }
.cat-nav { display: flex; gap: 20px; }
.cat-nav a { color: #aaa; font-size: 13px; font-weight: 600; text-transform: uppercase; }
.cat-nav a:hover { color: #ff4081; }

/* Masonry Grid */
.photo-grid {
    column-count: 4;
    column-gap: 15px;
    padding: 20px 0;
    width: 100%;
}

.photo-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 15px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #111;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
}

.photo-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    z-index: 10;
}

.photo-item a {
    display: block;
    position: relative;
}

.photo-thumbnail {
    width: 100%;
    display: block;
    position: relative;
    overflow: hidden;
}

.photo-thumbnail img,
.photo-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: initial;
    position: static;
    transition: transform 0.5s ease;
}

.photo-item:hover .photo-thumbnail img,
.photo-item:hover img {
    transform: scale(1.03);
}

.photo-overlay-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 15px 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
    transition: color 0.3s ease;
}

.photo-item:hover .photo-overlay-title { color: #ff4081; }

/* Badges */
/* CONTENT TYPE BADGES */

.content-type-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 24px;
    padding: 0 10px;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .6px;
    text-transform: uppercase;

    color: #fff;

    border-radius: 999px;

    backdrop-filter: blur(8px);

    box-shadow:
        0 4px 12px rgba(0,0,0,.25),
        0 2px 6px rgba(0,0,0,.20);

    transition: all .2s ease;
}

/* PHOTO */

.badge-photo {
    background: linear-gradient(
        135deg,
        #2196f3,
        #38bdf8
    );
}

/* VIDEO */

.badge-video {
    background: linear-gradient(
        135deg,
        #ff2d75,
        #ff4d94
    );
}

/* GIF */

.badge-gif {
    background: linear-gradient(
        135deg,
        #7c4dff,
        #a855f7
    );
}

/* Ad Containers */
.ad-container {
    display: block;
    width: 100%;
    margin: 20px auto;
    text-align: center;
    overflow: hidden;
    clear: both;
}

.ad-top,
.ad-top-home {
    margin: 20px 0;
    display: block;
}

.ad-middle {
    margin: 30px auto;
    display: block;
}

.ad-bottom-footer {
    margin: 40px auto 20px;
    display: block;
}

.ad-label {
    font-size: 10px;
    letter-spacing: 3px;
    color: #777;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.ad-container-inner {
    display: inline-block;
    max-width: 100%;
    min-height: 60px;
    background: #111;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 10px;
    transition: all 0.3s ease;
}

.ad-container-inner:hover { border-color: #ff4081; }

.ad-container iframe,
.ad-container ins,
.ad-container img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
    margin: 0 auto;
}

/* Single Page */
.single-photo-layout-full { padding: 20px 0; }

.photo-viewer {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.photo-viewer img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

@media (min-width: 1025px) {
    .cinematic-viewer {
        background: #000;
        padding: 40px 0;
        min-height: 600px;
    }

    .cinematic-viewer img {
        max-height: 85vh;
        width: auto;
        box-shadow: 0 0 50px rgba(0,0,0,0.8);
    }
}

.photo-title-single {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
}

/* Player de vídeo no single */
.media-display-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 30px;
    background: #000;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

video {
    width: 100%;
    border-radius: 15px;
    display: block;
}

/* Buttons & Tags */
.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ff4081;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: #e91e63;
    transform: translateY(-2px);
}

.reaction-bar {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.reaction-btn {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 8px 15px;
    border-radius: 20px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.reaction-btn:hover {
    border-color: #ff4081;
    transform: scale(1.05);
}

.meta-tags-only {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.meta-tags-only a {
    background: #222;
    color: #ff4081;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.meta-tags-only a:hover {
    background: #ff4081;
    color: #fff;
    transform: scale(1.1);
}

.model-tag {
    background: #333 !important;
    color: #fff !important;
    border: 1px solid #ffeb3b !important;
    font-weight: 800 !important;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.model-tag .star {
    color: #ffeb3b;
    font-size: 14px;
}

.category-navigation {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 1px solid #222;
}

.category-navigation a {
    background: #222;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.category-navigation a:hover {
    background: #ff4081;
    transform: translateY(-2px);
}

.related-section h2 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #ff4081;
    text-transform: uppercase;
}

.pagination-classic {
    text-align: center;
    padding: 40px 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pagination-classic .page-numbers {
    background: #2a2a2a;
    color: #fff;
    padding: 10px 18px;
    border-radius: 4px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.pagination-classic .page-numbers:hover,
.pagination-classic .current {
    background: #ff4081;
    transform: scale(1.1);
}

/* Mobile Optimization */
@media (max-width: 1200px) {
    .photo-grid { column-count: 4; }
}

@media (max-width: 1024px) {
    .photo-grid {
        column-count: 3;
        column-gap: 12px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 5px;
    }

    .header-flex {
        flex-direction: column;
        height: auto;
        padding: 10px 0;
        gap: 10px;
    }

    .search-bar { width: 100%; }

    .photo-grid {
        column-count: 2;
        column-gap: 8px;
        padding: 8px 0;
    }

    .photo-item {
        margin-bottom: 8px;
        border-radius: 10px;
    }

    .photo-thumbnail {
        border-radius: 10px;
        overflow: hidden;
    }

    .photo-thumbnail img,
    .photo-item img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: initial;
        position: static;
    }

    .photo-item:hover {
        transform: none;
    }

    .photo-item:hover .photo-thumbnail img,
    .photo-item:hover img {
        transform: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 3px;
    }

    .photo-grid {
        column-count: 2;
        column-gap: 6px;
        padding: 6px 0;
    }

    .photo-item {
        margin-bottom: 6px;
        border-radius: 10px;
    }

    .photo-thumbnail {
        border-radius: 10px;
        overflow: hidden;
    }
}

/* Bulk Upload Pro Styles */
.category-selector-container,
.model-selector-container {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 15px;
    margin-top: 10px;
}

.category-selector-grid,
.model-selector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
    max-height: 300px;
    overflow-y: auto;
    padding-right: 10px;
}

.cat-checkbox-item,
.model-checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    color: #ccc;
    padding: 6px 10px;
    background: #222;
    border-radius: 4px;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.cat-checkbox-item:hover,
.model-checkbox-item:hover {
    background: #2a2a2a;
    color: #fff;
    border-color: #444;
}

.cat-checkbox-item.selected {
    background: rgba(255, 64, 129, 0.1);
    border-color: #ff4081;
    color: #fff;
}

.model-checkbox-item.selected {
    background: rgba(255, 235, 59, 0.1);
    border-color: #ffeb3b;
    color: #fff;
}

/* Anti-Copy Protection */
body.no-copy {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

body.no-copy img {
    pointer-events: none;
}

/* =========================
   FIX MASONRY REAL (SEM CORTAR IMAGEM)
========================= */

/* grid vira masonry de verdade */
.photo-grid {
    column-count: 5;
    column-gap: 14px;
    width: 100%;
}

/* cada item independente */
.photo-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 14px;

    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;

    border-radius: 12px;
    overflow: hidden;
}

/* remove QUALQUER forçamento antigo */
.photo-thumbnail {
    position: static !important;
    height: auto !important;
    padding: 0 !important;
    aspect-ratio: auto !important;
}

/* imagem natural (ESSA É A CHAVE) */
.photo-thumbnail img,
.photo-item img {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;

    object-fit: contain !important;

    display: block !important;
}

/* remove efeito antigo que cortava */
.photo-thumbnail img {
    top: auto !important;
    left: auto !important;
}

/* RESPONSIVO */
@media (max-width: 1200px) {
    .photo-grid {
        column-count: 4;
    }
}

@media (max-width: 900px) {
    .photo-grid {
        column-count: 3;
    }
}

@media (max-width: 600px) {
    .photo-grid {
        column-count: 2;
        column-gap: 8px;
    }

    .photo-item {
        margin-bottom: 8px;
    }
}

/* =========================
   HEADER / MENU FIX
========================= */

body {
    overflow-x: hidden;
}

.ad-top-wrapper {
    width: 100%;
    text-align: center;
    background: #000;
    overflow: hidden;
}

.site-header {
    width: 100%;
    background: #090909;
    border-bottom: 1px solid #1d1d1d;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.header-inner {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.logo-section {
    flex: 0 0 auto;
    min-width: 0;
}

.site-title a {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.site-logo-img {
    display: block;
    max-height: 42px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

.search-bar {
    flex: 1;
    max-width: 620px;
    min-width: 220px;
}

.search-bar form {
    width: 100%;
    display: flex;
    align-items: center;
    background: #151515;
    border: 1px solid #282828;
    border-radius: 999px;
    overflow: hidden;
    height: 42px;
}

.search-bar input {
    flex: 1;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    padding: 0 16px;
    font-size: 14px;
}

.search-bar button {
    width: 46px;
    height: 42px;
    border: none;
    background: transparent;
    color: #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.search-bar button:hover {
    color: #ff4081;
}

.cat-slider-wrap {
    position: sticky;
    top: 67px;
    z-index: 9998;
    width: 100%;
    background: rgba(8, 8, 8, 0.96);
    border-bottom: 1px solid #1b1b1b;
    transition: transform 0.25s ease;
    overflow: hidden;
}

.cat-slider {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 11px 18px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
}

.cat-slider::-webkit-scrollbar {
    display: none;
}

.cat-slider.dragging {
    cursor: grabbing;
}

.cat-pill {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #bdbdbd;
    background: #141414;
    border: 1px solid #262626;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
}

.cat-pill:hover,
.cat-pill.active {
    color: #fff;
    background: #ff4081;
    border-color: #ff4081;
}

.cat-pill-icon {
    line-height: 1;
}

.cat-fade-left,
.cat-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 45px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.cat-fade-left {
    left: 0;
    background: linear-gradient(to right, #080808, transparent);
}

.cat-fade-right {
    right: 0;
    background: linear-gradient(to left, #080808, transparent);
}

.site-content {
    width: 100%;
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 10px;
    }

    .site-title a {
        justify-content: center;
        font-size: 20px;
    }

    .site-logo-img {
        max-height: 38px;
        max-width: 190px;
        margin: 0 auto;
    }

    .search-bar {
        max-width: 100%;
        min-width: 0;
        width: 100%;
    }

    .cat-slider-wrap {
        top: 108px;
    }

    .cat-slider {
        padding: 9px 10px;
        gap: 8px;
    }

    .cat-pill {
        padding: 7px 12px;
        font-size: 11px;
    }
}

/* SINGLE: restore buttons/socials/reactions */
.photo-info-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 15px;
}

.download-section {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.download-btn-premium {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff4081, #e91e63);
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none !important;
    box-shadow: 0 8px 25px rgba(255,64,129,.28);
}

.dopamine-grid {
    display: flex !important;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.dopamine-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    padding: 11px 18px;
    border-radius: 999px;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.neon-ig {
    background: linear-gradient(135deg, #ff4081, #ff9800);
}

.neon-tk {
    background: linear-gradient(135deg, #111, #444);
}

.neon-tw {
    background: linear-gradient(135deg, #1da1f2, #0066ff);
}

.reaction-bar {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 22px 0;
    flex-wrap: wrap;
}

.reaction-btn {
    min-width: 58px;
    height: 42px;
    background: #111 !important;
    color: #fff !important;
    border: 1px solid #2b2b2b !important;
    border-radius: 999px !important;
    cursor: pointer;
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    gap: 7px;
    font-size: 14px;
}

.reaction-btn:hover,
.dopamine-btn:hover,
.download-btn-premium:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.reaction-btn .emoji {
    font-size: 17px;
}

.reaction-count {
    font-weight: 800;
    font-size: 12px;
}

@media (max-width: 600px) {
    .dopamine-grid {
        display: grid !important;
        grid-template-columns: 1fr;
    }

    .dopamine-btn,
    .download-btn-premium {
        width: 100%;
    }
}

.neon-of {
    background: linear-gradient(135deg, #00aff0, #0077ff);
}

.neon-fs {
    background: linear-gradient(135deg, #0099ff, #6a00ff);
}

.neon-sc {
    background: linear-gradient(135deg, #fffc00, #ffb300);
    color: #111 !important;
}

.neon-tg {
    background: linear-gradient(135deg, #2aabee, #006699);
}

html,
body,
img,
video,
a {
    -webkit-user-select: none !important;
    user-select: none !important;
    -webkit-touch-callout: none !important;
}

img,
video {
    pointer-events: auto;
    -webkit-user-drag: none !important;
    user-drag: none !important;
}

video::-internal-media-controls-download-button {
    display: none !important;
}

video::-webkit-media-controls-enclosure {
    overflow: hidden !important;
}

/* =========================
   FIX DOWNLOAD POSITION
========================= */

.photo-info-section {
    margin-top: 5px !important;
    padding-top: 5px !important;
}

.download-section {
    margin-top: 5px !important;
    margin-bottom: 10px !important;
    padding-top: 0 !important;
}

.download-btn-premium {
    margin-top: 0 !important;
}

.photo-viewer {
    margin-bottom: 5px !important;
}

.cast-section {
    display: flex;
    justify-content: center;
    margin: 10px 0 5px;
}

/* =========================
   THUMB DOUBLE BADGES - DOPAMINE MODE
========================= */

.thumb-badges {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 30;

    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;

    max-width: calc(100% - 20px);
    pointer-events: none;
}

/* força o badge video/gif/photo a alinhar igual ao da category */
.thumb-badges .content-type-badge,
.thumb-badges .category-mini-badge {
    position: static !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    bottom: auto !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    height: 23px !important;
    min-height: 23px !important;

    padding: 0 9px !important;
    border-radius: 999px !important;

    font-size: 10px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    letter-spacing: 0.4px !important;
    text-transform: lowercase !important;
    white-space: nowrap !important;

    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
    backdrop-filter: blur(8px);
}

/* category badge: premium escuro, do lado do rosa */
.category-mini-badge {
    max-width: 115px;
    overflow: hidden;
    text-overflow: ellipsis;

    background: linear-gradient(135deg, rgba(18,18,18,0.92), rgba(45,45,45,0.78)) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    color: #f3f3f3 !important;
}

/* brilho leve no card quando tem badge dupla */
.photo-item:hover .thumb-badges .content-type-badge,
.photo-item:hover .thumb-badges .category-mini-badge {
    transform: translateY(-1px) scale(1.03);
    filter: brightness(1.12);
}

/* mobile: menor, mas ainda bonito */
@media (max-width: 600px) {
    .thumb-badges {
        top: 7px;
        right: 7px;
        gap: 4px;
        max-width: calc(100% - 14px);
    }

    .thumb-badges .content-type-badge,
    .thumb-badges .category-mini-badge {
        height: 21px !important;
        min-height: 21px !important;
        padding: 0 7px !important;
        font-size: 9px !important;
    }

    .category-mini-badge {
        max-width: 85px;
    }
}

/* NEW BADGE */

.new-mini-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    height:23px;
    padding:0 9px;

    border-radius:999px;

    font-size:10px;
    font-weight:900;
    letter-spacing:.5px;

    color:#fff;

    background:linear-gradient(
        135deg,
        #ff4500,
        #ff6b00
    );

    box-shadow:
        0 0 12px rgba(255,69,0,.45),
        0 6px 18px rgba(0,0,0,.35);

    animation:newPulse 2.5s infinite;
}

@keyframes newPulse{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.06);
    }

    100%{
        transform:scale(1);
    }
}

.new-mini-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    height:23px;
    padding:0 9px;

    border-radius:999px;

    font-size:10px;
    font-weight:900;

    color:#fff;

    background:linear-gradient(135deg,#ff4500,#ff6b00);

    box-shadow:
        0 0 12px rgba(255,69,0,.45),
        0 6px 18px rgba(0,0,0,.35);

    animation:newPulse 2.5s infinite;
}

@keyframes newPulse{
    0%{transform:scale(1);}
    50%{transform:scale(1.06);}
    100%{transform:scale(1);}
}