/* Plovoucí tlačítko */
.discount-button {
    display: none;
    position: fixed;
    right: 20px;  /* Na desktopu vpravo */
    bottom: 80px;
    z-index: 99;
    background-color: var(--primary);
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-weight: 500;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    white-space: nowrap;
    transform: none;  /* Zrušení transform pro desktop verzi */
}

.discount-button:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.discount-button-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: white;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 100;
}
.discount-button-close:hover {
    background-color: var(--primary);
    color: white;
}

.discount-close {
    top: 5px;
    right: 5px;
        -webkit-box-shadow: none;
    box-shadow: none;
        -webkit-transform: none;
        transform: none;
}
.modal-discount {
	border-radius: 10px;
}


@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Pro mobilní zařízení - uprostřed */
@media (max-width: 767px) {
    .discount-button {
        right: auto;  /* Zrušíme pravou pozici */
        left: 50%;    /* Nastavíme levou pozici na 50% */
        transform: translateX(-50%);  /* Centrujeme horizontálně */
        bottom: 70px;
    }
    .discount-products img {
    width: 100%;

    max-height: 150px;
    margin-bottom: 10px;
    object-fit: cover;
}
    
    
    @keyframes pulse {
        0% {
            transform: translateX(-50%) scale(1);
        }
        50% {
            transform: translateX(-50%) scale(1.05);
        }
        100% {
            transform: translateX(-50%) scale(1);
        }
    }
    .discount-modal {
	    padding: 15px;
    }
    
}

/* Modal pro formulář */
.discount-form-container {
    padding: 30px;
}

.discount-form-container h2 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 24px;
}

.discount-form-container p {
    margin-bottom: 20px;
line-height: 1.5em;    
    
}

.discount-products {
    height: 100%;
    display: flex;
    align-items: center;
}

.discount-products img {
    max-width: 100%;
    /* border-radius: 8px; */
    height: 100%;
    object-fit: cover;
}

.discount-form {
    margin-bottom: 15px;
}

.discount-terms {
    margin-top: 15px;
    font-size: 14px;
    line-height: 18px;
    color: #777;
}