/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Dec 05 2025 | 20:40:02 */
.page-poukaz-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 20px;
	
}

.page-poukaz-wrapper > h2 {
    text-align: center;
    margin-bottom: 16px;
    font-size: 2.5em;
}

.poukazy-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1em;
    margin: 0 auto 50px auto;
    max-width: 700px;
}

.poukazy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.poukaz-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.poukaz-item:hover {
    border-color: #545454;
    transform: translateY(-4px);
}

.poukaz-image {
    width: 100%;
    height: 280px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.poukaz-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.poukaz-item:hover .poukaz-image img {
    transform: scale(1.05);
}

.poukaz-content {
    padding: 28px;
}

.poukaz-content h3 {
    margin: 0 0 16px 0;
    font-size: 1.1em;
    color: #545454;
    line-height: 1.4;
}

.poukaz-price {
    font-size: 1.2em;
    color: #545454;
    margin: 0;
}

/* Modal styles */
.poukaz-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.poukaz-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    z-index: 10000;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.poukaz-modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 32px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    color: #545454;
}

.modal-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    overflow: hidden;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
}

.modal-info h2 {
    margin: 0 0 20px 0;
    font-size: 2em;
    color: #545454;
}

.modal-price {
    font-size: 1.6em;
    color: #545454;
    margin: 0 0 30px 0;
}

.modal-description {
    flex-grow: 1;
    margin-bottom: 30px;
}

.modal-description p {
    margin: 0 0 20px 0;
    line-height: 1.6;
    color: #666;
}

.modal-description ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-description ul li {
    padding: 4px 0 4px 24px;
    position: relative;
    color: #666;
}

.modal-description ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #545454;
}

.page-poukaz-wrapper button,
.page-poukaz-wrapper .modal-btn {
    background: #545454 !important;
    color: white !important;
    border: none !important;
    padding: 18px 40px !important;
    font-size: 1.1em !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: background 0.3s ease !important;
    transform: none !important;
    box-shadow: none !important;
    width: 100%;
}

.page-poukaz-wrapper button:before,
.page-poukaz-wrapper button:after,
.page-poukaz-wrapper .modal-btn:before,
.page-poukaz-wrapper .modal-btn:after {
    display: none !important;
    content: none !important;
}

.page-poukaz-wrapper button:hover,
.page-poukaz-wrapper button:focus,
.page-poukaz-wrapper button:active,
.page-poukaz-wrapper .modal-btn:hover,
.page-poukaz-wrapper .modal-btn:focus,
.page-poukaz-wrapper .modal-btn:active {
    background: #b0c4bb !important;
    color: white !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
}

/* Order Form Styles */
.order-form {
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #545454;
    font-size: 0.95em;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #545454;
}

/* Payment Success Styles */
.payment-success {
    text-align: center;
    width: 100%;
}

.payment-success h2 {
    color: #545454;
    margin-bottom: 16px;
}

.payment-success p {
    color: #666;
    margin-bottom: 24px;
}

.qr-code-container {
    margin: 0 0 30px 0;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 12px;
    display: inline-block;
}

.qr-code-container img {
    max-width: 300px;
    width: 100%;
    height: auto;
}

.qr-info {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 30px;
}

.poukaz-custom-cta {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    padding: 48px 40px;
    border-radius: 12px;
    text-align: center;
}

.poukaz-custom-cta h3 {
    margin: 0 0 12px 0;
    font-size: 1.8em;
    color: #545454;
}

.poukaz-custom-cta > p {
    margin: 0 0 24px 0;
    font-size: 1.1em;
    color: #666;
}

.cta-contact {
    margin-top: 20px;
}

.cta-contact p {
    margin: 8px 0;
    font-size: 1.1em;
}

.cta-contact a {
    color: #545454;
    text-decoration: none;
    transition: color 0.2s ease;
}

.cta-contact a:hover {
    color: #000;
}

@media (max-width: 1200px) {
    .poukazy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .poukazy-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        grid-template-columns: 1fr;
        max-height: 95vh;
    }
    
    .modal-image {
        display: none;
    }
    
    .modal-info {
        padding: 30px 24px;
    }
    
    .poukaz-custom-cta {
        padding: 36px 24px;
    }
}