/* ---- Globální úprava příznaku "Garance do Vánoc" ---- */

.flag.flag-custom1 {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;

    background: linear-gradient(90deg, #ff3b2e, #d80000) !important;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 15px;

    padding: 8px 12px;
    margin: 6px 0 !important;

    text-align: center !important;

    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);

    position: relative;
    overflow: hidden;
}

/* Shine efekt */
.flag.flag-custom1::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0.0) 100%
    );
    transform: skewX(-25deg);
    animation: flagXmasShine 2.8s infinite;
}

@keyframes flagXmasShine {
    0% { left: -120%; }
    50% { left: 120%; }
    100% { left: 120%; }
}

/* Nezmizí při hoveru ve výpisu */
.product:hover .flag-custom1 {
    opacity: 1 !important;
    visibility: visible !important;
}

/* ---- Úprava karty ve výpisu produktů ---- */
.p-bottom {
    display: block !important; /* aby příznak mohl být full-width */
    width: 100% !important;
}