* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    height: 100%;
    width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #f9fafb;
}
body {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.widget-container {
    width: 100%;
    max-width: 100%;
    height: 100%;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.widget-header {
    margin-bottom: 20px;
}
.widget-title {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}
.widget-subtitle {
    font-size: 14px;
    color: #6b7280;
}
.map-container {
    width: 100%;
    height: 1200px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid #e5e7eb;
    position: relative;
}
#map {
    width: 100%;
    height: 100%;
}
.search-box-container {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 33.333%;
    z-index: 10;
}
.fence-info-overlay {
    position: absolute;
    top: 70px;
    right: 10px;
    width: 33.333%;
    z-index: 10;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12),
                0 4px 16px rgba(0, 0, 0, 0.08);
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.6);
    overflow: hidden;
}
.fence-info-mobile {
    display: none;
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 250, 251, 0.98) 100%);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
    border: 1px solid rgba(255, 255, 255, 0.9);
}
.search-box-wrapper {
    position: relative;
}
.search-box-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 14px;
    pointer-events: none;
}
.search-box {
    width: 100%;
    padding: 12px 16px 12px 42px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    background: white;
    transition: all 0.2s;
}
.search-box:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.08), 0 2px 8px rgba(0, 0, 0, 0.06);
}
.search-box::placeholder {
    color: #9ca3af;
}
.price-range {
    background: #f3f4f6;
    border-radius: 6px;
    padding: 16px;
    margin-bottom: 20px;
}
.price-label {
    font-size: 12px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
}
.price-min-max {
    display: flex;
    gap: 16px;
    margin-top: 12px;
}
.price-item {
    flex: 1;
}
.measurement-section {
    padding: 28px 28px 24px 28px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}
.measurement-section-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}
.measurement-section-content {
    flex: 1;
}
.price-note {
    font-size: 10px;
    color: #64748b;
    margin-top: 8px;
    line-height: 1.5;
    font-style: italic;
}
.reset-btn-inline {
    width: 40px;
    height: 40px;
    padding: 0;
    background: white;
    color: #ef4444;
    border: 1.5px solid #fee2e2;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}
.reset-btn-inline:hover {
    background: #fef2f2;
    border-color: #fecaca;
    transform: scale(1.08);
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.15);
}
.reset-btn-inline:active {
    transform: scale(0.96);
}
.reset-confirm-modal {
    position: fixed;
    background: white;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    min-width: 200px;
    display: none;
    border: 1px solid rgba(0, 0, 0, 0.08);
    pointer-events: none;
}
.reset-confirm-modal.show {
    display: block;
    pointer-events: auto;
    animation: modalFadeIn 0.2s ease;
}
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.reset-confirm-text {
    font-size: 13px;
    color: #374151;
    margin-bottom: 12px;
    font-weight: 500;
}
.reset-confirm-buttons {
    display: flex;
    gap: 8px;
}
.reset-confirm-btn {
    flex: 1;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.reset-confirm-btn-yes {
    background: #ef4444;
    color: white;
}
.reset-confirm-btn-yes:hover {
    background: #dc2626;
}
.reset-confirm-btn-no {
    background: #f3f4f6;
    color: #374151;
}
.reset-confirm-btn-no:hover {
    background: #e5e7eb;
}
.price-item-label {
    font-size: 10px;
    color: #64748b;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.price-item-label i {
    font-size: 13px;
    color: #3b82f6;
    opacity: 0.8;
}
.price-item-value {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1px;
    line-height: 1.1;
}
.tips-panel {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    margin: 0;
    border-top: 1px solid rgba(59, 130, 246, 0.15);
    overflow: hidden;
}
.tips-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 16px 28px;
    user-select: none;
    transition: background-color 0.2s ease;
}
.tips-toggle .tips-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    border: none;
}
.tips-toggle:hover {
    background-color: rgba(59, 130, 246, 0.05);
}
.tips-toggle i.fa-chevron-down {
    transition: transform 0.3s ease;
    color: #3b82f6;
    font-size: 12px;
    display: flex;
    align-items: center;
}
.tips-toggle.collapsed i.fa-chevron-down {
    transform: rotate(-90deg);
}
.tips-content {
    max-height: 500px;
    padding: 0 28px 20px 28px;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
    opacity: 1;
    overflow: hidden;
}
.tips-panel.collapsed .tips-content {
    max-height: 0;
    padding: 0 28px;
    opacity: 0;
}
.request-quote-btn.shimmer-effect {
    position: relative;
    overflow: hidden;
}
.request-quote-btn.shimmer-effect::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 1.5s ease-in-out;
}
@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}
.instruction-panel {
    padding: 32px 28px;
}
.instruction-title {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e2e8f0;
}
.instruction-title i {
    color: #3b82f6;
    font-size: 18px;
}
.instruction-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px;
    background: white;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
}
.instruction-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateX(4px);
}
.instruction-item:last-child {
    margin-bottom: 0;
}
.instruction-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}
.instruction-text {
    flex: 1;
    font-size: 13px;
    line-height: 1.6;
    color: #475569;
}
.instruction-text strong {
    color: #0f172a;
    font-weight: 600;
}
.tips-panel {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    margin: 0;
    border-top: 1px solid rgba(59, 130, 246, 0.15);
}
.tips-title {
    font-size: 12px;
    font-weight: 700;
    color: #0369a1;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
}
.tips-title i {
    font-size: 14px;
    color: #0284c7;
}
.tips-item {
    font-size: 12px;
    color: #0c4a6e;
    line-height: 1.8;
    padding: 8px 12px 8px 28px;
    position: relative;
    margin-bottom: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 6px;
}
.tips-item:last-child {
    margin-bottom: 0;
}
.tips-item:before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: #0284c7;
    border-radius: 50%;
}
.travel-info {
    background: #eff6ff;
    border-left: 4px solid #3b82f6;
    border-radius: 4px;
    padding: 12px;
    margin-top: 16px;
}
.travel-info-title {
    font-size: 14px;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 4px;
}
.travel-info-text {
    font-size: 13px;
    color: #1e3a8a;
}
.buttons-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 0;
    padding: 24px 28px;
    background: linear-gradient(to top, rgba(248, 250, 252, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.quote-callback-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: #64748b;
    margin-top: 4px;
}
.quote-callback-note i {
    color: #3b82f6;
    font-size: 13px;
}
.reset-btn {
    width: 48px;
    height: 48px;
    padding: 0;
    background: white;
    color: #ef4444;
    border: 1.5px solid #fee2e2;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.reset-btn:hover {
    background: #fef2f2;
    border-color: #fecaca;
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.15);
}
.reset-btn:active {
    transform: scale(0.96);
}
.request-quote-btn {
    flex: 1;
    padding: 14px 24px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
    position: relative;
    overflow: hidden;
}
.request-quote-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}
.request-quote-btn:hover:before {
    left: 100%;
}
.request-quote-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.45);
}
.request-quote-btn:active {
    transform: translateY(-1px);
}
.request-quote-btn i {
    font-size: 13px;
}
.request-quote-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s ease;
}
.modal-overlay.active {
    display: flex;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.modal-content {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-radius: 16px;
    padding: 0;
    max-width: 520px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2),
                0 4px 16px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.8);
    animation: modalSlideIn 0.3s ease;
}
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px 20px 28px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}
.modal-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 10px;
}
.modal-title i {
    color: #3b82f6;
    font-size: 20px;
}
.modal-close {
    background: white;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
    color: #6b7280;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}
.modal-close:hover {
    color: #111827;
    border-color: rgba(0, 0, 0, 0.12);
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.modal-close:active {
    transform: scale(0.95);
}
.modal-body {
    padding: 24px 28px;
    max-height: calc(90vh - 200px);
    overflow-y: auto;
}
.form-group {
    margin-bottom: 18px;
}
.form-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.form-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    font-size: 14px;
    background: white;
    transition: all 0.2s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}
.form-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
}
.form-input::placeholder {
    color: #9ca3af;
}
.form-textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    font-size: 14px;
    min-height: 100px;
    resize: vertical;
    background: white;
    transition: all 0.2s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}
.form-textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
}
.form-textarea::placeholder {
    color: #9ca3af;
}
.info-box {
    background: linear-gradient(135deg, rgba(249, 250, 251, 0.95) 0%, rgba(243, 244, 246, 0.95) 100%);
    border-radius: 10px;
    padding: 16px 18px;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.info-label {
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.info-value {
    color: #0f172a;
    font-weight: 600;
    font-size: 14px;
}
.modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.btn-primary {
    flex: 1;
    padding: 14px 24px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
    position: relative;
    overflow: hidden;
}
.btn-primary:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}
.btn-primary:hover:before {
    left: 100%;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.45);
}
.btn-primary:active {
    transform: translateY(0);
}
.btn-secondary {
    flex: 1;
    padding: 14px 24px;
    background: white;
    color: #374151;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}
.btn-secondary:hover {
    background: #f9fafb;
    border-color: rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.btn-secondary:active {
    transform: translateY(0);
}
.info-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    background: #10b981;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}
@media (max-width: 700px) {
    body {
        padding: 8px;
    }
    .widget-container {
        padding: 8px;
        border-radius: 0;
    }
    .map-container {
        height: 80vh;
        margin-bottom: 8px;
        border-radius: 8px;
    }
    .search-box-container {
        position: absolute;
        top: 10px;
        left: 10px;
        right: 10px;
        width: auto;
    }
    .info-badge {
        top: auto;
        bottom: 10px;
        left: 0;
        right: auto;
        border-radius: 0 6px 6px 0;
    }
    .fence-info-overlay {
        display: none !important;
    }
    .fence-info-mobile {
        display: block !important;
        padding: 12px;
        margin-top: 8px;
        border-radius: 12px;
    }
    /* Sekcja "Jak dokonać pomiaru?" - kompaktowy widok bez boxów */
    .fence-info-mobile .instruction-panel {
        padding: 12px 8px;
    }
    .fence-info-mobile .instruction-title {
        font-size: 13px;
        margin-bottom: 12px;
        padding-bottom: 10px;
        gap: 6px;
    }
    .fence-info-mobile .instruction-title i {
        font-size: 14px;
    }
    .fence-info-mobile .instruction-item {
        padding: 0;
        margin-bottom: 8px;
        gap: 10px;
        background: none;
        border: none;
        border-radius: 0;
    }
    .fence-info-mobile .instruction-item:hover {
        transform: none;
        box-shadow: none;
    }
    .fence-info-mobile .instruction-icon {
        width: 24px;
        height: 24px;
        font-size: 11px;
        border-radius: 6px;
    }
    .fence-info-mobile .instruction-text {
        font-size: 12px;
        line-height: 1.4;
    }
    /* Sekcja pomiaru - kompaktowy układ inline */
    .fence-info-mobile .measurement-section {
        padding: 10px 12px;
        border-bottom: none;
    }
    .fence-info-mobile .measurement-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 4px;
    }
    .fence-info-mobile .measurement-line {
        display: flex;
        align-items: center;
        gap: 6px;
        flex: 1;
    }
    .fence-info-mobile .measurement-line i {
        font-size: 12px;
        color: #3b82f6;
        width: 14px;
    }
    .fence-info-mobile .measurement-label {
        font-size: 12px;
        font-weight: 600;
        color: #64748b;
    }
    .fence-info-mobile .measurement-value {
        font-size: 15px;
        font-weight: 700;
        color: #0f172a;
    }
    .fence-info-mobile .price-note {
        font-size: 9px;
        margin-top: 6px;
        padding-left: 20px;
        color: #64748b;
    }
    .fence-info-mobile .reset-btn-inline {
        width: 32px;
        height: 32px;
        font-size: 12px;
        flex-shrink: 0;
    }
    /* Wskazówki - kompaktowe na mobile, domyślnie zwinięte */
    .fence-info-mobile .tips-panel {
        border-top: 1px solid rgba(59, 130, 246, 0.1);
    }
    .fence-info-mobile .tips-panel {
        max-height: 0;
        overflow: hidden;
    }
    .fence-info-mobile .tips-panel.collapsed {
        max-height: none;
        overflow: visible;
    }
    .fence-info-mobile .tips-toggle {
        padding: 10px 12px;
    }
    .fence-info-mobile .tips-toggle i.fa-chevron-down {
        transform: rotate(-90deg);
        transition: transform 0.3s ease;
    }
    .fence-info-mobile .tips-toggle.collapsed i.fa-chevron-down {
        transform: rotate(-90deg);
    }
    .fence-info-mobile .tips-toggle:not(.collapsed) i.fa-chevron-down {
        transform: rotate(0deg);
    }
    .fence-info-mobile .tips-title {
        font-size: 11px;
    }
    .fence-info-mobile .tips-content {
        padding: 0 12px 12px 12px;
        max-height: 0;
        opacity: 0;
        transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
        overflow: hidden;
    }
    .fence-info-mobile .tips-panel.collapsed .tips-content {
        max-height: 0;
        padding: 0 12px;
        opacity: 0;
    }
    .fence-info-mobile .tips-panel:not(.collapsed) .tips-content {
        max-height: 500px;
        padding: 0 12px 12px 12px;
        opacity: 1;
    }
    .fence-info-mobile .tips-item {
        font-size: 11px;
        padding: 6px 10px 6px 20px;
    }
    .fence-info-mobile .tips-item:before {
        left: 8px;
        width: 3px;
        height: 3px;
    }
    /* Przyciski na mobile */
    .fence-info-mobile .buttons-container {
        padding: 12px;
        gap: 8px;
    }
    .fence-info-mobile .request-quote-btn {
        padding: 12px 20px;
        font-size: 13px;
    }
    .fence-info-mobile .quote-callback-note {
        font-size: 11px;
        margin-top: 2px;
    }
}
@media (min-width: 701px) {
    .fence-info-mobile {
        display: none !important;
    }
}

