/* Custom CSS - pouze pro extra styly, které Tailwind nepokrývá */

/* =====================================================
   Editovatelný obsah stránek přes WordPress CMS
   ===================================================== */
.gillovapsi-content h1,
.gillovapsi-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.gillovapsi-content h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.gillovapsi-content p {
    margin-bottom: 1.25rem;
    line-height: 1.75;
    color: #4b5563;
    font-size: 1.0625rem;
}

.gillovapsi-content ul,
.gillovapsi-content ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
    color: #4b5563;
}

.gillovapsi-content ul {
    list-style-type: disc;
}

.gillovapsi-content ol {
    list-style-type: decimal;
}

.gillovapsi-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.gillovapsi-content strong {
    font-weight: 700;
    color: #1f2937;
}

.gillovapsi-content em {
    font-style: italic;
}

.gillovapsi-content a {
    color: #2d5016;
    text-decoration: underline;
}

.gillovapsi-content a:hover {
    color: #1f3910;
}

.gillovapsi-content blockquote {
    border-left: 4px solid #2d5016;
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #6b7280;
}

.gillovapsi-content img {
    border-radius: 0.5rem;
    max-width: 100%;
    height: auto;
    margin: 1rem 0;
}

.gillovapsi-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.gillovapsi-content th,
.gillovapsi-content td {
    border: 1px solid #e5e7eb;
    padding: 0.5rem 0.75rem;
    text-align: left;
}

.gillovapsi-content th {
    background: #f9fafb;
    font-weight: 600;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* FAQ Icon rotation */
.faq-icon.rotate-180 {
    transform: rotate(180deg);
}

/* Custom focus styles */
input:focus,
textarea:focus,
button:focus {
    outline: none;
}

/* Print styles */
@media print {

    header,
    footer {
        display: none;
    }
}

/* Hide scrollbar for reviews carousel */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}