/*
Theme Name: KUNDEL
Theme URI: https://lapowo.pl
Author: Seweryn
Description: Motyw WordPress dla portalu społecznościowego Zakochany Kundel
Version: 1.0
Text Domain: kundel
*/

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background: #f3f4f6;
    color: #1f2937;
    line-height: 1.4;
}

a {
    color: #2563eb;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

.kundel-container {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 20px;
}

.kundel-app-banner {
    background: linear-gradient(135deg, #0f172a, #1f2937);
    color: #ffffff;
}

.kundel-app-banner-inner {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.kundel-app-banner-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
    line-height: 1.4;
}

.kundel-app-banner-copy strong {
    font-size: 15px;
    font-weight: 700;
}

.kundel-app-banner-copy span {
    color: rgba(255, 255, 255, 0.84);
}

.kundel-app-banner-badge {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.kundel-app-banner-badge img {
    display: block;
    width: min(190px, 44vw);
    height: auto;
}

.kundel-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.kundel-header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.kundel-logo a {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.kundel-logo img {
	max-height: 60px;
	width: auto;
	display: block;
}

.kundel-logo .custom-logo-link {
	display: inline-block;
}

.kundel-nav ul {
    display: flex;
    align-items: center;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.kundel-user {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

body:not(.logged-in) .kundel-user {
    gap: 10px;
}

.kundel-header-auth-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.kundel-header-auth-link:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.kundel-header-auth-link-login {
    color: #1f2937;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid #d7deea;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}

.kundel-header-auth-link-login:hover {
    color: #0f172a;
    background: #ffffff;
    border-color: #b9c6dc;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.12);
}

.kundel-header-auth-link-register {
    color: #ffffff;
    background: linear-gradient(135deg, #e57e5b, #d86a45);
    box-shadow: 0 12px 28px rgba(216, 106, 69, 0.28);
}

.kundel-header-auth-link-register:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #dd714c, #c95f3b);
    box-shadow: 0 16px 30px rgba(216, 106, 69, 0.34);
}

.kundel-main {
    padding: 28px 0;
}

.kundel-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr) 300px;
    gap: 24px;
    align-items: start;
}

.kundel-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.kundel-card h1,
.kundel-card h2,
.kundel-card h3 {
    margin-top: 0;
}

.kundel-sidebar-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.kundel-sidebar-menu li {
    margin-bottom: 12px;
}

/* zmiana stylu przyciskow */
/* ===== Menu boczne - styl aplikacji ===== */

.kundel-sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.kundel-sidebar-menu li {
    margin: 0;
}

.kundel-sidebar-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 12px 14px;
    border-radius: 12px;

    font-weight: 600;
    color: #1f2937;

    background: transparent;
    transition: all 0.2s ease;
}

/* hover */
.kundel-sidebar-menu li a:hover {
    background: #eef2ff;
    color: #2563eb;
    text-decoration: none;
}

/* aktywny element */
.kundel-sidebar-menu li.current a,
.kundel-sidebar-menu li a.active {
    background: #2563eb;
    color: #ffffff;
}

/* efekt kliknięcia */
.kundel-sidebar-menu li a:active {
    transform: scale(0.98);
}
/* end zmiana koloru przyciskow */


.kundel-footer {
    margin-top: 30px;
    padding: 24px 0;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
}

.kundel-feed-item {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 16px;
    background: #fff;
    margin-bottom: 16px;
}

.kundel-member-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.kundel-member-item img,
.activity-avatar img,
.item-avatar img {
    border-radius: 50%;
}

#buddypress {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
}

#buddypress .activity-list,
#buddypress .members-list,
#buddypress .groups-list,
#buddypress .item-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

#buddypress .item-list li {
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
}

#buddypress .item-list li:last-child {
    border-bottom: 0;
}

#buddypress .dir-search,
#buddypress .item-list-tabs,
#buddypress .bp-pagination {
    margin-bottom: 18px;
}

@media (max-width: 1100px) {
    .kundel-layout {
        grid-template-columns: 240px minmax(0, 1fr);
    }

    .kundel-sidebar-right {
        display: none;
    }
}

/* @media (max-width: 768px) {
    .kundel-app-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .kundel-app-banner-copy {
        align-items: center;
    }

    .kundel-app-banner-badge img {
        width: min(190px, 62vw);
    }

    .kundel-header-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 14px 0;
    }

    .kundel-nav ul {
        flex-wrap: wrap;
    }

    .kundel-layout {
        grid-template-columns: 1fr;
    }

    .kundel-sidebar-left,
    .kundel-sidebar-right {
        display: none;
    } 
    
}*/
@media (max-width: 768px) {
    .kundel-header-inner {
        flex-direction: column;
        align-items: stretch;
        padding: 14px 0;
    }

    .kundel-layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .kundel-sidebar-right {
        display: none;
    }
}

.kundel-content {
    min-width: 0;
}

#buddypress {
    width: 100%;
}

#buddypress form,
#buddypress div,
#buddypress ul,
#buddypress li {
    max-width: 100%;
}

#buddypress .item-body {
    margin-top: 16px;
}

#buddypress .activity-list .activity-item,
#buddypress .item-list li {
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
}

#buddypress .item-list li:last-child,
#buddypress .activity-list .activity-item:last-child {
    border-bottom: none;
}

#buddypress .dir-search input[type="search"],
#buddypress .dir-search input[type="text"],
#buddypress input[type="text"],
#buddypress input[type="search"],
#buddypress input[type="password"],
#buddypress input[type="email"],
#buddypress textarea,
#buddypress select {
    width: 100%;
    max-width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background: #fff;
}

#buddypress input[type="submit"],
#buddypress button,
#buddypress a.button {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 10px;
    border: none;
    background: #2563eb;
    color: #fff;
    cursor: pointer;
}

#buddypress .item-list-tabs ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
}

#buddypress .item-list-tabs ul li {
    margin: 0;
    padding: 0;
    border: none;
}

#buddypress .item-list-tabs ul li a,
#buddypress .item-list-tabs ul li span {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 10px;
    background: #f3f4f6;
    color: #111827;
}

#buddypress .item-avatar img {
    border-radius: 50%;
}

/* ===== BuddyPress - lepszy wygląd katalogów ===== */

#buddypress .screen-heading,
#buddypress .bp-screen-title,
#buddypress .entry-title {
    margin-top: 0;
    margin-bottom: 18px;
    font-size: 30px;
    font-weight: 800;
    color: #111827;
}

#buddypress .item-list li,
#buddypress .activity-list .activity-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 18px;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

#buddypress .item-avatar {
    float: left;
    margin-right: 16px;
}

#buddypress .item-avatar img,
#buddypress .activity-avatar img,
#buddypress .avatar {
    border-radius: 50%;
}

#buddypress .item {
    overflow: hidden;
}

#buddypress .item-title,
#buddypress .activity-header p,
#buddypress .activity-header a {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
}

#buddypress .item-meta,
#buddypress .activity-meta,
#buddypress .activity-time-since,
#buddypress .time-since {
    font-size: 13px;
    color: #6b7280;
}

#buddypress .activity-content,
#buddypress .activity-content .activity-inner,
#buddypress .activity-content p,
#buddypress .item-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #374151;
}

#buddypress .item-list-tabs,
#buddypress .subnav-filters,
#buddypress .dir-search {
    background: #ffffff;
    border-radius: 18px;
    padding: 16px 18px;
    margin-bottom: 18px;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

#buddypress .item-list-tabs ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

#buddypress .item-list-tabs ul li {
    margin: 0;
}

#buddypress .item-list-tabs ul li a,
#buddypress .item-list-tabs ul li span {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 12px;
    background: #f3f4f6;
    color: #111827;
    font-weight: 600;
    transition: all 0.2s ease;
}

#buddypress .item-list-tabs ul li.current a,
#buddypress .item-list-tabs ul li.selected a,
#buddypress .item-list-tabs ul li a:hover {
    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
}

#buddypress .dir-search form {
    display: flex;
    gap: 10px;
    align-items: center;
}

#buddypress .dir-search input[type="search"],
#buddypress .dir-search input[type="text"] {
    flex: 1;
    margin: 0;
}

#buddypress .pagination,
#buddypress .bp-pagination {
    margin-top: 20px;
    padding: 12px 0 0;
    color: #6b7280;
    font-size: 14px;
}

#buddypress .action .button,
#buddypress .generic-button a,
#buddypress a.button,
#buddypress button,
#buddypress input[type="submit"],
#buddypress input[type="button"] {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 12px;
    background: #2563eb;
    color: #ffffff;
    font-weight: 600;
    border: none;
    text-decoration: none;
}

#buddypress .action .button:hover,
#buddypress .generic-button a:hover,
#buddypress a.button:hover {
    opacity: 0.92;
    text-decoration: none;
}

#buddypress .activity-comments {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}

#buddypress .activity-comments ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#buddypress .activity-comments li {
    background: #f8fafc;
    border-radius: 14px;
    padding: 14px;
    margin-top: 10px;
}

#buddypress .activity-comments .acomment-avatar img {
    border-radius: 50%;
}

#buddypress .bp-feedback,
#buddypress .notice,
#buddypress .info,
#buddypress .success,
#buddypress .error {
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 16px;
}

/* ===== Activity page ===== */

.kundel-page-hero {
    padding: 26px 28px;
}

.kundel-page-hero h1 {
    margin-bottom: 8px;
    font-size: 44px;
    line-height: 1.1;
}

.kundel-page-hero p {
    margin: 0;
    font-size: 16px;
    color: #6b7280;
}

.kundel-activity-wrapper {
    padding: 24px;
}

#buddypress form#whats-new-form {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 22px;
}

#buddypress #whats-new-avatar {
    float: left;
    margin-right: 14px;
}

#buddypress #whats-new-avatar img {
    border-radius: 50%;
}

#buddypress #whats-new-content {
    overflow: hidden;
}

#buddypress #whats-new-textarea textarea {
    min-height: 110px;
    resize: vertical;
    font-size: 15px;
}

#buddypress #whats-new-options {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}

#buddypress #whats-new-submit {
    margin: 0;
}

#buddypress .activity-list .activity-item {
    position: relative;
    overflow: hidden;
}

#buddypress .activity-list .activity-item::before {
    content: "";
    display: block;
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    border-radius: 20px 20px 0 0;
}

#buddypress .activity-list .activity-item {
    padding-top: 22px;
}

#buddypress .activity-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
}

#buddypress .activity-avatar {
    flex: 0 0 auto;
}

#buddypress .activity-avatar img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: block;
}

#buddypress .activity-header p {
    margin: 0 0 6px;
    font-size: 16px;
    line-height: 1.5;
    color: #111827;
}

#buddypress .activity-header p a {
    font-weight: 700;
}

#buddypress .activity-meta {
    margin-top: 6px;
}

#buddypress .activity-meta a,
#buddypress .time-since {
    font-size: 13px;
    color: #6b7280;
}

#buddypress .activity-content {
    margin-top: 6px;
    font-size: 15px;
    line-height: 1.75;
    color: #374151;
}

#buddypress .activity-content .activity-inner {
    margin: 0;
}

#buddypress .activity-content img {
    border-radius: 16px;
    margin-top: 12px;
}

#buddypress .activity-meta.action {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}

#buddypress .activity-meta.action a {
    display: inline-block;
    margin-right: 14px;
    font-size: 14px;
    font-weight: 600;
}

#buddypress .activity-comments {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #e5e7eb;
}

#buddypress .activity-comments li {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
}

#buddypress .activity-comments form.ac-form {
    margin-top: 14px;
    padding: 14px;
    background: #f8fafc;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
}

#buddypress .activity-comments form textarea {
    min-height: 90px;
    resize: vertical;
}

#buddypress .bp-pagination,
#buddypress .pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    margin-top: 18px;
    padding-top: 18px;
}

#buddypress .subnav-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    align-items: center;
}

#buddypress .subnav-filters .component-filters,
#buddypress .subnav-filters .feed {
    display: flex;
    align-items: center;
    gap: 10px;
}

#buddypress label[for="activity-filter-by"] {
    font-weight: 600;
    color: #374151;
}

#buddypress select#activity-filter-by {
    min-width: 220px;
    background: #fff;
}

#buddypress .activity-update-form {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .kundel-page-hero h1 {
        font-size: 34px;
    }

    .kundel-activity-wrapper {
        padding: 18px;
    }

    #buddypress #whats-new-options,
    #buddypress .subnav-filters {
        flex-direction: column;
        align-items: stretch;
    }

    #buddypress select#activity-filter-by {
        min-width: 100%;
    }
}
textarea {
	width: 100%;
	padding: 12px;
	border-radius: 10px;
	border: 1px solid #ddd;
	margin-bottom: 10px;
	font-size: 14px;
}

button {
	background: #2563eb;
	color: white;
	border: none;
	padding: 10px 16px;
	border-radius: 10px;
	cursor: pointer;
}

button:hover {
	background: #1d4ed8;
}
/* */
.activity-item {
	padding: 15px;
	border-bottom: 1px solid #eee;
}

.activity-content {
	margin-left: 70px;
}

.activity-avatar img {
	border-radius: 50%;
}
.kundel-like-btn {
	display: inline-block;
	margin-right: 15px;
	color: #2563eb;
	font-weight: 500;
	cursor: pointer;
}

.kundel-like-btn:hover {
	text-decoration: underline;
}

.activity-comments {
	margin-top: 15px;
	padding-top: 10px;
	border-top: 1px solid #eee;
}

.activity-list li {
	background: #fff;
	border-radius: 16px;
	padding: 15px;
	margin-bottom: 15px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.kundel-like-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 10px 14px;
	border-radius: 12px;
	border: none;
	background: #eef2ff;
	color: #1f2937;
	font-weight: 600;
	cursor: pointer;
	margin-right: 12px;
	transition: all 0.2s ease;
}

.kundel-like-btn:hover {
	background: #dbeafe;
	text-decoration: none;
}

.kundel-like-btn.is-liked {
	background: #fee2e2;
	color: #1f2937;
}

.kundel-like-btn.is-liked .kundel-paw-icon {
	color: #000000;
}

.kundel-like-btn.is-loading {
	opacity: 0.7;
	cursor: wait;
}

.kundel-like-btn.is-disabled {
	opacity: 0.7;
	cursor: default;
}

.kundel-paw-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	color: currentColor;
	flex: 0 0 auto;
}

.kundel-paw-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.kundel-like-counter {
	display: inline-block;
	margin-right: 14px;
	font-size: 14px;
	color: #4b5563;
}

.activity-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-top: 14px;
	padding-top: 12px;
	border-top: 1px solid #e5e7eb;
}
/* ===== Profil użytkownika ===== */

.kundel-profile-hero {
    padding: 0;
    overflow: hidden;
}

.kundel-profile-cover {
    height: 180px;
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    display: block;
}

.kundel-profile-main {
    display: flex;
    align-items: flex-end;
    gap: 24px;
    padding: 20px 24px 24px;
    margin-top: -34px;
}

.kundel-profile-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 5px solid #ffffff;
    display: block;
    background: #fff;
}

.kundel-profile-avatar .kundel-lightbox-trigger {
	display: inline-block;
	border-radius: 50%;
	overflow: hidden;
}

.zkp-gallery-link {
	display: block;
}

.zkp-gallery-image {
	display: block;
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.kundel-profile-info h1 {
    margin: 0 0 6px;
    font-size: 32px;
    line-height: 1.15;
}

.kundel-profile-username {
    margin: 0;
    color: #6b7280;
    font-size: 15px;
}

.kundel-profile-settings-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 12px;
	padding: 12px 14px;
	border-radius: 12px;
	font-weight: 600;
	color: #1f2937;
	background: transparent;
	transition: all 0.2s ease;
}

.kundel-profile-settings-link:hover {
	background: #eef2ff;
	color: #2563eb;
	text-decoration: none;
}

@media (max-width: 768px) {
    .kundel-profile-main {
        flex-direction: column;
        align-items: flex-start;
        margin-top: -28px;
        padding: 16px 16px 18px;
    }
}
/* ===== Widok dla gościa ===== */

.kundel-guest-hero {
    text-align: left;
    padding: 32px;
}

.kundel-guest-hero h1 {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 12px;
}

.kundel-guest-hero p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 24px;
}

.kundel-guest-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.kundel-btn-primary,
.kundel-btn-secondary {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
}

.kundel-btn-primary {
    background: #2563eb;
    color: #ffffff;
}

.kundel-btn-primary:hover {
    background: #1d4ed8;
    text-decoration: none;
}

.kundel-btn-secondary {
    background: #eef2ff;
    color: #1f2937;
}

.kundel-btn-secondary:hover {
    background: #dbeafe;
    text-decoration: none;
}

.kundel-benefits-list {
    margin: 0;
    padding-left: 20px;
}

.kundel-benefits-list li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #374151;
}
/* Układ dla niezalogowanego */

body:not(.logged-in) .kundel-layout {
    grid-template-columns: 1fr;
}

body:not(.logged-in) .kundel-content {
    max-width: 800px;
    margin: 0 auto;
}

/* ===== Landing page dla niezalogowanych ===== */

.zk-page {
  --bg1: #fff7f5;
  --bg2: #ffe8e2;
  --primary: #e76f51;
  --primary-dark: #d65a3b;
  --secondary: #f4a261;
  --text: #3d2c2e;
  --muted: #6f5b5d;
  --white: #ffffff;
  --shadow: 0 15px 40px rgba(0,0,0,0.08);
  --radius: 22px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg1), #fff);
  overflow: hidden;
}

.zk-page * {
  box-sizing: border-box;
}

.zk-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.zk-hero {
  position: relative;
  padding: 90px 0 70px;
  background:
    radial-gradient(circle at top left, rgba(244,162,97,0.18), transparent 35%),
    radial-gradient(circle at right center, rgba(231,111,81,0.16), transparent 30%),
    linear-gradient(135deg, #fff7f5 0%, #ffece7 100%);
}

.zk-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.zk-badge {
  display: inline-block;
  background: rgba(231,111,81,0.12);
  color: var(--primary-dark);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 20px;
}

.zk-title {
  font-size: 54px;
  line-height: 1.08;
  margin: 0 0 20px;
  font-weight: 800;
}

.zk-title span {
  color: var(--primary);
}

.zk-subtitle {
  font-size: 19px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 650px;
  margin-bottom: 30px;
}

.zk-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.zk-btn {
  display: inline-block;
  padding: 15px 26px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.25s ease;
}

.zk-btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(231,111,81,0.28);
}

.zk-btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.zk-btn-secondary {
  background: var(--white);
  color: var(--text);
  border: 1px solid rgba(0,0,0,0.08);
}

.zk-btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.zk-mini-info {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 15px;
}

.zk-mini-info span {
  background: rgba(255,255,255,0.7);
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.04);
}

.zk-hero-card {
  background: rgba(255,255,255,0.72);
  /* backdrop-filter: blur(8px); */
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
}

.zk-dog-circle {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  background: linear-gradient(135deg, #ffd8c8, #fff3ee);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.03);
}

.zk-floating-box {
  position: absolute;
  background: var(--white);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.09);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.zk-floating-1 {
  left: -15px;
  top: 22px;
}

.zk-floating-2 {
  right: -10px;
  bottom: 30px;
}

.zk-section {
  padding: 80px 0;
}

.zk-section-title {
  text-align: center;
  font-size: 38px;
  margin: 0 0 14px;
  font-weight: 800;
}

.zk-section-text {
  text-align: center;
  font-size: 18px;
  color: var(--muted);
  max-width: 760px;
  margin: 0 auto 45px;
  line-height: 1.7;
}

.zk-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.zk-feature {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow);
  text-align: center;
}

.zk-feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  background: linear-gradient(135deg, #ffe1d7, #fff1eb);
}

.zk-feature h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.zk-feature p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 16px;
}

.zk-about-box {
  background: linear-gradient(135deg, #fff2ed, #ffffff);
  border-radius: 30px;
  padding: 45px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.zk-about-visual {
  min-height: 320px;
  border-radius: 24px;
  background: linear-gradient(135deg, #ffd6c8, #fff3ed);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 110px;
}

.zk-about-content h3 {
  font-size: 34px;
  margin: 0 0 16px;
}

.zk-about-content p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 17px;
}

.zk-list {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.zk-list li {
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
  color: var(--text);
  font-weight: 600;
}

.zk-list li::before {
  content: "❤";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
}

.zk-cta {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #e76f51, #f4a261);
  color: var(--white);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.zk-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 10px;
}

.zk-cta h3 {
  font-size: 40px;
  margin: 0 0 16px;
}

.zk-cta p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 760px;
  margin: 0 auto 28px;
  opacity: 0.95;
}

.zk-cta .zk-btn-secondary {
  border: none;
}

.zk-store-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.zk-store-badge {
  display: inline-block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.zk-store-badge:hover {
  transform: translateY(-2px);
  opacity: 0.96;
}

.zk-store-badge-static {
  cursor: default;
}

.zk-store-badge-static:hover {
  transform: none;
  opacity: 1;
}

.zk-store-badge img {
  display: block;
  width: min(220px, 72vw);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

.zk-footer {
  text-align: center;
  padding: 28px 15px 40px;
  color: var(--muted);
  font-size: 15px;
}

/* body:not(.logged-in).home .kundel-main,
body:not(.logged-in).home .kundel-footer {
  display: none;
}

body:not(.logged-in) .kundel-nav {
  display: none;
} */

@media (max-width: 991px) {
  .zk-hero-grid,
  .zk-about-box,
  .zk-features {
    grid-template-columns: 1fr;
  }

  .zk-title {
    font-size: 42px;
  }

  .zk-about-box {
    padding: 30px;
  }

  .zk-floating-1,
  .zk-floating-2 {
    position: static;
    display: inline-block;
    margin-top: 14px;
    margin-right: 10px;
  }
}

@media (max-width: 600px) {
  .zk-hero {
    padding: 70px 0 50px;
  }

  .zk-title {
    font-size: 34px;
  }

  .zk-subtitle,
  .zk-section-text,
  .zk-about-content p,
  .zk-cta p {
    font-size: 16px;
  }

  .zk-section-title {
    font-size: 30px;
  }

  .zk-cta h3 {
    font-size: 30px;
  }

  .zk-dog-circle,
  .zk-about-visual {
    font-size: 80px;
  }

  .zk-actions {
    flex-direction: column;
  }

  .zk-btn {
    width: 100%;
    text-align: center;
  }
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}
/* ===== Rejestracja / logowanie ===== */

.kundel-login-page {
	padding: 40px 16px;
}

.kundel-auth-wrap {
    max-width: 760px;
    margin: 40px auto;
}

.kundel-auth-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.kundel-auth-header {
    padding: 30px 32px 20px;
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    color: #ffffff;
}

.kundel-auth-header h1 {
    margin: 0 0 10px;
    font-size: 38px;
    line-height: 1.1;
}

.kundel-auth-header p {
    margin: 0;
    font-size: 16px;
    opacity: 0.95;
}

.kundel-auth-body {
    padding: 30px 32px 34px;
}

.kundel-auth-body form {
    margin: 0;
}

.kundel-auth-body label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: #1f2937;
}

.kundel-auth-body input[type="text"],
.kundel-auth-body input[type="email"],
.kundel-auth-body input[type="password"],
.kundel-auth-body input[type="search"],
.kundel-auth-body textarea,
.kundel-auth-body select {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #d1d5db;
    border-radius: 14px;
    background: #fff;
    font-size: 15px;
    margin-bottom: 16px;
}

.kundel-auth-body textarea {
    min-height: 120px;
    resize: vertical;
}

.kundel-auth-body input[type="submit"],
.kundel-auth-body button,
.kundel-auth-body .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    padding: 14px 22px;
    border-radius: 18px;
    border: none;
    background: linear-gradient(135deg, #e57e5b, #d86a45);
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(216, 106, 69, 0.24);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.kundel-auth-body input[type="submit"]:hover,
.kundel-auth-body button:hover,
.kundel-auth-body .button:hover {
    background: linear-gradient(135deg, #dd714c, #c95f3b);
    box-shadow: 0 18px 30px rgba(216, 106, 69, 0.30);
    transform: translateY(-1px);
}

.kundel-auth-body .bp-feedback,
.kundel-auth-body .error,
.kundel-auth-body .notice,
.kundel-auth-body .success {
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 18px;
}

@media (max-width: 768px) {
    .kundel-auth-wrap {
        margin: 20px auto;
    }

    .kundel-auth-header,
    .kundel-auth-body {
        padding: 22px 20px;
    }

    .kundel-auth-header h1 {
        font-size: 30px;
    }

    body:not(.logged-in) .kundel-header-inner {
        align-items: flex-start;
        gap: 16px;
    }

    body:not(.logged-in) .kundel-user {
        width: 100%;
        justify-content: stretch;
    }

    .kundel-header-auth-link {
        flex: 1 1 calc(50% - 5px);
        min-width: 0;
        padding: 0 14px;
    }
}
/* ===== Gość: ukrywanie elementów portalu tylko na stronie głównej ===== */

body:not(.logged-in).home .kundel-header .kundel-nav {
    display: none;
}

body:not(.logged-in).home .kundel-header .kundel-user {
    justify-content: flex-end;
}

body:not(.logged-in).home .kundel-footer {
    display: none;
}

.page-template-page-logowanie .kundel-header .kundel-user,
.page-template-page-dolacz .kundel-header .kundel-user,
.page-template-page-register .kundel-header .kundel-user,
.page-template-page-odzyskaj-haslo .kundel-header .kundel-user,
.page-template-page-ustaw-nowe-haslo .kundel-header .kundel-user,
body.home:not(.logged-in) .kundel-header .kundel-user {
    flex-wrap: wrap;
}
.kundel-auth-body form input[type="submit"] {
    margin-top: 8px;
}

.kundel-auth-body form p {
    margin-bottom: 16px;
}
/* ===== RESPONSYWNOŚĆ KUNDEL ===== */

/* Duże tablety i mniejsze laptopy */
@media (max-width: 1200px) {
    .kundel-container,
    .zk-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .kundel-layout {
        grid-template-columns: 220px minmax(0, 1fr) 260px;
        gap: 18px;
    }

    .kundel-card {
        padding: 18px;
    }
}

/* Tablet */
/* Tablet / mniejsze laptopy */
@media (max-width: 900px) {
    .kundel-header-inner {
        flex-wrap: wrap;
        gap: 16px;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .kundel-logo {
        width: auto;
    }

    .kundel-nav {
        width: auto;
        order: 2;
    }

    .kundel-user {
        margin-left: auto;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    /* nadal 2 kolumny, nie 1 */
    @media (max-width: 1100px) {
    .kundel-layout {
        grid-template-columns: 240px minmax(0, 1fr);
        gap: 18px;
    }

    .kundel-sidebar-right {
        display: none;
    }

    .kundel-sidebar-left {
        order: 1;
    }

    .kundel-content {
        order: 2;
    }
}

    .zk-hero-grid,
    .zk-about-box,
    .zk-features {
        grid-template-columns: 1fr;
    }

    .zk-title {
        font-size: 40px;
    }

    .zk-about-box {
        padding: 28px;
    }

    .zk-floating-1,
    .zk-floating-2 {
        position: static;
        display: inline-block;
        margin-top: 12px;
        margin-right: 10px;
    }
}

@media (max-width: 992px) {
    .kundel-header-inner {
        flex-wrap: wrap;
        gap: 16px;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .kundel-logo {
        width: 100%;
    }

    .kundel-nav {
        width: 100%;
        order: 3;
    }

    .kundel-nav ul,
    .kundel-menu {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 14px;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .kundel-user {
        margin-left: auto;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .kundel-layout {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .kundel-sidebar-left,
    .kundel-sidebar-right {
        display: block;
    }

    .kundel-sidebar-left {
        order: 2;
    }

    .kundel-content {
        order: 1;
    }

    .kundel-sidebar-right {
        order: 3;
    }

    .zk-hero-grid,
    .zk-about-box,
    .zk-features {
        grid-template-columns: 1fr;
    }

    .zk-title {
        font-size: 40px;
    }

    .zk-about-box {
        padding: 28px;
    }

    .zk-floating-1,
    .zk-floating-2 {
        position: static;
        display: inline-block;
        margin-top: 12px;
        margin-right: 10px;
    }
}

/* Telefon */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    .kundel-header-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        min-height: auto;
    }

    .kundel-logo a {
        font-size: 24px;
    }

    /* 
    .kundel-nav ul,
    .kundel-menu {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    } 
        */

    .kundel-nav ul li a,
    .kundel-menu li a {
        display: block;
        text-align: center;
        padding: 10px 12px;
        background: #f8fafc;
        border-radius: 12px;
    }

    .kundel-user {
        justify-content: space-between;
        gap: 10px;
        font-size: 14px;
    }

    .kundel-main {
        padding: 18px 0;
    }

    .kundel-card {
        padding: 16px;
        border-radius: 14px;
    }

    .kundel-card h1 {
        font-size: 26px;
        line-height: 1.2;
    }

    .kundel-card h2 {
        font-size: 22px;
    }

    .kundel-card h3 {
        font-size: 18px;
    }

    .kundel-feed-item {
        padding: 14px;
        border-radius: 14px;
    }

    .activity-header {
        gap: 10px;
    }

    .activity-avatar img,
    .kundel-member-item img,
    .item-avatar img {
        width: 42px;
        height: 42px;
    }

    .activity-content {
        margin-left: 0;
    }

    .activity-meta {
        gap: 8px;
    }

    .kundel-like-btn,
    .kundel-like-counter,
    .time-since {
        width: 100%;
    }

    .kundel-profile-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        margin-top: -36px;
        padding: 0 16px 16px;
    }

    .kundel-profile-cover {
        height: 140px;
    }

    .kundel-profile-avatar img {
        width: 96px;
        height: 96px;
    }

    .kundel-profile-info h1 {
        font-size: 24px;
    }

    .kundel-auth-wrap {
        margin: 20px auto;
    }

    .kundel-auth-header,
    .kundel-auth-body {
        padding: 20px 16px;
    }

    .kundel-auth-header h1 {
        font-size: 28px;
    }

    .kundel-auth-body input[type="text"],
    .kundel-auth-body input[type="email"],
    .kundel-auth-body input[type="password"],
    .kundel-auth-body input[type="search"],
    .kundel-auth-body textarea,
    .kundel-auth-body select,
    textarea {
        font-size: 16px;
    }

    .zk-hero {
        padding: 56px 0 40px;
    }

    .zk-title {
        font-size: 32px;
    }

    .zk-subtitle,
    .zk-section-text,
    .zk-about-content p,
    .zk-cta p {
        font-size: 16px;
        line-height: 1.7;
    }

    .zk-actions {
        flex-direction: column;
    }

    .zk-btn {
        width: 100%;
        text-align: center;
    }

    .zk-mini-info {
        flex-direction: column;
        gap: 10px;
    }

    .zk-dog-circle,
    .zk-about-visual {
        font-size: 74px;
    }

    .zk-section {
        padding: 50px 0;
    }

    .zk-section-title {
        font-size: 28px;
    }

    .zk-cta {
        padding: 42px 16px;
        border-radius: 24px;
    }

    .zk-cta h3 {
        font-size: 28px;
    }

    .zk-store-badge {
        margin-top: 0;
    }

    .zk-store-badge img {
        width: min(210px, 82vw);
    }

    #buddypress .item-list-tabs ul {
        flex-direction: column;
        align-items: stretch;
    }

    #buddypress .item-list-tabs ul li a,
    #buddypress .item-list-tabs ul li span {
        width: 100%;
        text-align: center;
    }

    #buddypress .dir-search form,
    #buddypress .subnav-filters {
        flex-direction: column;
        align-items: stretch;
    }

    #buddypress .dir-search input[type="search"],
    #buddypress .dir-search input[type="text"],
    #buddypress select#activity-filter-by {
        width: 100%;
        min-width: 100%;
    }
}

/* Małe telefony */
@media (max-width: 480px) {
    .kundel-container,
    .zk-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .kundel-logo a {
        font-size: 22px;
    }

    .kundel-nav ul,
    .kundel-menu {
        grid-template-columns: 1fr;
    }

    .kundel-card h1 {
        font-size: 22px;
    }

    .kundel-card h2 {
        font-size: 20px;
    }

    .zk-title {
        font-size: 28px;
    }

    .zk-badge {
        font-size: 13px;
        padding: 8px 14px;
    }

    .kundel-auth-header h1 {
        font-size: 24px;
    }
}
/* ===== Hamburger menu ===== */

.kundel-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 12px;
    background: #f3f4f6;
    cursor: pointer;
    padding: 10px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.kundel-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #111827;
    border-radius: 999px;
    transition: all 0.25s ease;
}

.kundel-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.kundel-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.kundel-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
    .kundel-header-inner {
        position: relative;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 12px;
    }

    .kundel-logo {
        flex: 1 1 auto;
    }

    .kundel-user {
        width: 100%;
        order: 3;
        justify-content: flex-start;
    }

    .kundel-menu-toggle {
        display: inline-flex;
    }

    .kundel-nav {
        display: none;
        width: 100%;
        order: 2;
    }

    .kundel-nav.is-open {
        display: block;
    }

    .kundel-nav ul,
    .kundel-menu {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin: 12px 0 0;
        padding: 0;
        list-style: none;
    }

    .kundel-nav ul li a,
    .kundel-menu li a {
        display: block;
        width: 100%;
        padding: 12px 14px;
        background: #f8fafc;
        border-radius: 12px;
        text-align: left;
        font-weight: 600;
    }
}
.kundel-card h3 {
    margin-bottom: 10px;
}

.kundel-sidebar-menu {
    margin-top: 10px;
}

@media (max-width: 768px) {
    .kundel-sidebar-menu li a {
        padding: 14px;
        font-size: 15px;
    }
}

/* ===== Górne menu ===== */

.kundel-nav ul,
.kundel-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.kundel-nav ul li,
.kundel-menu li {
    margin: 0;
    padding: 0;
}

.kundel-nav ul li a,
.kundel-menu li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 600;
    color: #1f2937;
    background: transparent;
    transition: all 0.2s ease;
    text-decoration: none;
}

.kundel-nav ul li a:hover,
.kundel-menu li a:hover {
    background: #eef2ff;
    color: #2563eb;
    text-decoration: none;
}

/* aktywna pozycja menu */
.kundel-nav ul li.current-menu-item a,
.kundel-nav ul li.current_page_item a,
.kundel-nav ul li.current-menu-parent a,
.kundel-menu li.current-menu-item a,
.kundel-menu li.current_page_item a,
.kundel-menu li.current-menu-parent a {
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.18);
}

.kundel-nav ul li a:active,
.kundel-menu li a:active {
    transform: scale(0.98);
}
.kundel-header-inner {
    min-height: 86px;
}
/* wyszukiwarka uzytkownikow */
/* Strona: szukaj użytkownika — bez tła na przyciskach */
body.page-slug-szukaj-uzytkownika button,
body.page-slug-szukaj-uzytkownika input[type="submit"],
body.page-slug-szukaj-uzytkownika input[type="reset"],
body.page-slug-szukaj-uzytkownika input[type="button"],
body.page-slug-szukaj-uzytkownika .button,
body.page-slug-szukaj-uzytkownika a.button {
    -webkit-appearance: none !important;
    appearance: none !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    color: #2563eb !important;
    border: 2px solid #2563eb !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

body.page-slug-szukaj-uzytkownika button:hover,
body.page-slug-szukaj-uzytkownika button:focus,
body.page-slug-szukaj-uzytkownika button:active,
body.page-slug-szukaj-uzytkownika input[type="submit"]:hover,
body.page-slug-szukaj-uzytkownika input[type="submit"]:focus,
body.page-slug-szukaj-uzytkownika input[type="submit"]:active,
body.page-slug-szukaj-uzytkownika input[type="reset"]:hover,
body.page-slug-szukaj-uzytkownika input[type="reset"]:focus,
body.page-slug-szukaj-uzytkownika input[type="reset"]:active,
body.page-slug-szukaj-uzytkownika input[type="button"]:hover,
body.page-slug-szukaj-uzytkownika input[type="button"]:focus,
body.page-slug-szukaj-uzytkownika input[type="button"]:active,
body.page-slug-szukaj-uzytkownika .button:hover,
body.page-slug-szukaj-uzytkownika .button:focus,
body.page-slug-szukaj-uzytkownika .button:active,
body.page-slug-szukaj-uzytkownika a.button:hover,
body.page-slug-szukaj-uzytkownika a.button:focus,
body.page-slug-szukaj-uzytkownika a.button:active {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    color: #2563eb !important;
    border-color: #2563eb !important;
    box-shadow: none !important;
    outline: none !important;
}
/* koniec wyszukiwarki */
/* dodawanie grafiki w aktywnosci/wpis */
.kundel-activity-image-wrap img {
	max-width: 100%;
	height: auto;
	border-radius: 16px;
	display: block;
	margin-top: 10px;
}
/* Zdjęcie w poście / aktywności */
.kundel-activity-photo-block {
	margin-top: 14px;
}

.kundel-activity-photo-thumb {
	display: block;
	max-width: 280px;
	width: 100%;
	height: auto;
	border-radius: 16px;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(0,0,0,0.08);
	transition: transform 0.15s ease;
}

.kundel-activity-photo-thumb:hover {
	transform: scale(1.01);
}

/* Lightbox */
.kundel-lightbox-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.82);
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
	z-index: 99999;
}

.kundel-lightbox-overlay.is-open {
	display: flex;
}

.kundel-lightbox-box {
	position: relative;
	max-width: 90vw;
	max-height: 90vh;
}

.kundel-lightbox-image {
	display: block;
	max-width: 90vw;
	max-height: 90vh;
	width: auto;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.kundel-lightbox-close {
	position: absolute;
	top: -14px;
	right: -14px;
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 50%;
	background: #ffffff;
	color: #111827;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}
.kundel-activity-photo-thumb {
	max-width: 320px;
	width: 100%;
}
.kundel-activity-photo-block {
	margin-top: 14px;
}

.kundel-activity-photo-thumb {
	display: block;
	max-width: 320px;
	width: 100%;
	height: auto;
	border-radius: 16px;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(0,0,0,0.08);
	transition: transform 0.15s ease;
}

.kundel-activity-photo-thumb:hover {
	transform: scale(1.01);
}

.kundel-lightbox-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.82);
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
	z-index: 99999;
}

.kundel-lightbox-overlay.is-open {
	display: flex;
}

.kundel-lightbox-box {
	position: relative;
	max-width: 90vw;
	max-height: 90vh;
}

.kundel-lightbox-image {
	display: block;
	max-width: 90vw;
	max-height: 90vh;
	width: auto;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.kundel-lightbox-close {
	position: absolute;
	top: -14px;
	right: -14px;
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 50%;
	background: #ffffff;
	color: #111827;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}
/* kasowanie posta */
.kundel-delete-activity-form {
	display: inline-block;
	margin-left: 8px;
}

.kundel-delete-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 10px 14px;
	border-radius: 12px;
	border: none;
	background: #fee2e2;
	color: #b91c1c;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}

.kundel-delete-btn:hover {
	background: #fecaca;
	color: #991b1b;
}

.kundel-delete-btn:active {
	transform: scale(0.98);
}
/* cookies */
.kundel-cookie {
	position: fixed;
	left: 20px;
	right: 20px;
	bottom: 20px;
	max-width: 920px;
	margin: 0 auto;
	background: #ffffff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 18px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
	padding: 20px;
	z-index: 999999;
	display: none !important;
}

.kundel-cookie.show {
	display: block !important;
}

.kundel-cookie-box {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.kundel-cookie-text strong {
	display: block;
	font-size: 18px;
	margin-bottom: 6px;
	color: #111827;
}

.kundel-cookie-text p {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: #4b5563;
}

.kundel-cookie-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.kundel-cookie-actions button,
.kundel-cookie-actions a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 16px;
	border-radius: 12px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
}

#kundel-accept-all {
	background: #2563eb;
	color: #ffffff;
	border: none;
}

#kundel-accept-all:hover {
	background: #1d4ed8;
}

#kundel-reject {
	background: #f3f4f6;
	color: #111827;
	border: none;
}

#kundel-reject:hover {
	background: #e5e7eb;
}

#kundel-settings-link {
	background: transparent;
	color: #2563eb;
	border: 1px solid #d1d5db;
}

#kundel-settings-link:hover {
	background: #f8fafc;
	text-decoration: none;
}

@media (max-width: 640px) {
	.kundel-cookie {
		left: 12px;
		right: 12px;
		bottom: 12px;
		padding: 16px;
	}

	.kundel-cookie-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.kundel-cookie-actions button,
	.kundel-cookie-actions a {
		width: 100%;
	}
}
/* cookies end */
/* wybiegi mapa */
.zkdog-toolbar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 16px;
}

#zkdog-map {
  width: 100%;
  min-height: 520px;
  border-radius: 18px;
  overflow: hidden;
  background: #eef2f7;
  border: 1px solid #e5e7eb;
}

.zkdog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
}

.zkdog-results {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 14px;
  max-height: 520px;
  overflow: auto;
}

.zkdog-result-item {
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
}

.zkdog-result-item:last-child {
  border-bottom: none;
}

.zkdog-result-item h4 {
  margin: 0 0 6px;
  font-size: 16px;
}

.zkdog-result-item p {
  margin: 0 0 8px;
  color: #4b5563;
  font-size: 14px;
}

.zkdog-result-item a {
  font-weight: 600;
}

@media (max-width: 900px) {
  .zkdog-layout {
    grid-template-columns: 1fr;
  }

  .zkdog-results {
    max-height: none;
  }
}
/* wybiegi mapa end */
/* dog walker start */
.kundel-success-box {
	background: #ecfdf3;
	border: 1px solid #a7f3d0;
	color: #065f46;
	padding: 14px 16px;
	border-radius: 14px;
	margin-bottom: 18px;
	font-weight: 600;
}

.kundel-dogwalker-filter {
	margin-top: 18px;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	align-items: center;
}

.kundel-dogwalker-card {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 20px;
	padding: 20px 0;
	border-bottom: 1px solid #e5e7eb;
}

.kundel-dogwalker-card:last-child {
	border-bottom: none;
}

.kundel-dogwalker-photo img,
.kundel-dogwalker-photo-placeholder {
	width: 100%;
	height: 220px;
	object-fit: cover;
	border-radius: 18px;
	display: block;
}

.kundel-dogwalker-photo .kundel-lightbox-trigger {
	display: block;
	height: 100%;
}

.kundel-dogwalker-photo-placeholder {
	background: #f3f4f6;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 56px;
}

.kundel-dogwalker-content h3 {
	margin-top: 0;
	margin-bottom: 12px;
}

.kundel-dogwalker-content p {
	margin: 0 0 8px;
}

.kundel-dogwalker-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 12px;
}

.kundel-edit-dogwalker-image {
	display: block;
	max-width: 220px;
	border-radius: 16px;
}

.kundel-dogwalker-form p {
	margin-bottom: 16px;
}

.kundel-dogwalker-form input[type="text"],
.kundel-dogwalker-form textarea,
.kundel-dogwalker-form select,
.kundel-dogwalker-form input[type="file"] {
	width: 100%;
}

.kundel-pagination-wrap {
	margin-top: 24px;
}

.kundel-pagination-wrap .page-numbers {
	display: inline-block;
	margin-right: 8px;
	padding: 8px 12px;
	border-radius: 10px;
	background: #f3f4f6;
}

.kundel-pagination-wrap .current {
	background: #2563eb;
	color: #fff;
}

@media (max-width: 768px) {
	.kundel-dogwalker-filter {
		grid-template-columns: 1fr;
	}

	.kundel-dogwalker-card {
		grid-template-columns: 1fr;
	}
}
.kundel-add-disabled-wrap {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.kundel-btn-disabled {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 18px;
	border-radius: 14px;
	background: #d1d5db;
	color: #6b7280;
	font-weight: 700;
	cursor: not-allowed;
	opacity: 0.9;
	max-width: fit-content;
}

.kundel-add-note {
	margin: 0;
	font-size: 14px;
	color: #6b7280;
	line-height: 1.5;
}
/* dog walker end */
.mailtokontakt {
  color: #aaa;
}
/* zmiana odzyskanie hasła start */
.kundel-success-box {
	background: #ecfdf3;
	border: 1px solid #a7f3d0;
	color: #065f46;
	padding: 14px 16px;
	border-radius: 14px;
	margin-bottom: 18px;
	font-weight: 600;
}

.kundel-error-box {
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: #991b1b;
	padding: 14px 16px;
	border-radius: 14px;
	margin-bottom: 18px;
	font-weight: 600;
}
/* zmiana odzyskanie hasła end */
/* ===== NAPRAWA UKŁADU DESKTOP / ACTIVITY ===== */

@media (min-width: 993px) {
    .kundel-layout {
        grid-template-columns: 260px minmax(0, 1fr) 300px !important;
        gap: 24px !important;
    }

    .kundel-sidebar-left {
        display: block !important;
        order: 1 !important;
    }

    .kundel-content {
        order: 2 !important;
        min-width: 0 !important;
    }

    .kundel-sidebar-right {
        display: block !important;
        order: 3 !important;
    }

    .kundel-header-inner {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .kundel-logo,
    .kundel-nav,
    .kundel-user {
        width: auto !important;
    }

    .kundel-nav {
        display: block !important;
    }

    .kundel-nav ul,
    .kundel-menu {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .kundel-layout {
        grid-template-columns: 240px minmax(0, 1fr) !important;
        gap: 20px !important;
    }

    .kundel-sidebar-right {
        display: none !important;
    }

    .kundel-sidebar-left {
        display: block !important;
        order: 1 !important;
    }

    .kundel-content {
        order: 2 !important;
        min-width: 0 !important;
    }

    .kundel-header-inner {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        align-items: center !important;
    }

    .kundel-logo,
    .kundel-nav,
    .kundel-user {
        width: auto !important;
    }

    .kundel-nav {
        display: block !important;
        order: 2 !important;
    }

    .kundel-nav ul,
    .kundel-menu {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        align-items: center !important;
    }
}

/* BuddyPress – nie ściskaj wszystkich divów */
/* #buddypress div {
    max-width: none !important;
} */
.kundel-avatar,
.kundel-avatar-placeholder {
	border-radius: 50%;
	overflow: hidden;
	flex: 0 0 auto;
}

.kundel-avatar {
	display: block;
}

.kundel-avatar-placeholder {
	display: block;
	background: #eef1f5;
}

#buddypress .activity-list .activity-item,
.activity-list .activity-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

#buddypress .activity-list .activity-item > .activity-content,
.activity-list .activity-item > .activity-content {
	flex: 1 1 auto;
	min-width: 0;
	margin-left: 0;
}

#buddypress .activity-list .activity-item > .activity-avatar,
.activity-list .activity-item > .activity-avatar {
	flex: 0 0 auto;
}

#buddypress .activity-header {
	display: block;
	margin-bottom: 12px;
}

#buddypress .activity-header p {
	margin: 0;
}

#buddypress .activity-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

#buddypress .activity-comments,
#buddypress .kundel-comments-list,
#buddypress .kundel-comment-form-wrap {
	width: 100%;
}

.kundel-card input[type="file"] {
	display: block;
	width: 100%;
	max-width: 100%;
	padding: 10px 12px;
	border: 1px solid #d1d5db;
	border-radius: 12px;
	background: #fff;
	color: #374151;
}

@media (max-width: 768px) {
	#buddypress .activity-list .activity-item,
	.activity-list .activity-item {
		gap: 12px;
	}
}

/* =========================
   KOMENTARZE AKTYWNOŚCI
========================= */

.kundel-comment-toggle-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 10px 14px;
	border-radius: 12px;
	border: none;
	background: #f3f4f6;
	color: #1f2937;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}

.kundel-comment-toggle-btn:hover {
	background: #e5e7eb;
}

.kundel-comment-toggle-btn-inline {
	margin-right: 12px;
}

.kundel-comment-toggle-wrap {
	margin-bottom: 12px;
}

.kundel-comment-form-wrap {
	margin-top: 12px;
	margin-bottom: 14px;
	padding: 14px;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	background: #f8fafc;
}

.kundel-comment-form-wrap textarea {
	width: 100%;
	min-height: 90px;
	resize: vertical;
	padding: 12px;
	border-radius: 12px;
	border: 1px solid #d1d5db;
	background: #ffffff;
	font-size: 14px;
	margin-bottom: 10px;
}

.kundel-comment-form-wrap input[type="submit"],
.kundel-comment-form-wrap button {
	display: inline-block;
	padding: 10px 16px;
	border-radius: 12px;
	border: none;
	background: #2563eb;
	color: #ffffff;
	font-weight: 600;
	cursor: pointer;
}

.kundel-comment-form-wrap input[type="submit"]:hover,
.kundel-comment-form-wrap button:hover {
	background: #1d4ed8;
}

.kundel-comments-note {
	margin: 10px 0 0;
	padding: 12px 14px;
	border-radius: 12px;
	background: #f8fafc;
	border: 1px solid #e5e7eb;
	color: #6b7280;
	font-size: 14px;
}

.kundel-comments-stream {
	margin-top: 12px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

body.logged-in .kundel-layout {
	grid-template-columns: 260px minmax(0, 0.8fr) minmax(120px, 0.2fr) !important;
}

body.logged-in .kundel-sidebar-right {
	display: none !important;
}

.kundel-sidebar-new-users-mobile {
	display: none;
}

@media (max-width: 992px) {
	body.logged-in .kundel-layout {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 16px !important;
	}

	body.logged-in .kundel-sidebar-left {
		display: block !important;
		order: 1 !important;
		width: 100% !important;
	}

	body.logged-in .kundel-sidebar-menu-card {
		order: 1 !important;
		width: 100% !important;
	}

	body.logged-in .kundel-content {
		order: 2 !important;
		width: 100% !important;
		min-width: 0 !important;
	}

	body.logged-in .kundel-sidebar-right {
		display: block !important;
		order: 3 !important;
		width: 100% !important;
	}

	.kundel-sidebar-new-users-desktop {
		display: none !important;
	}

	.kundel-sidebar-new-users-mobile {
		display: block !important;
	}

	body.logged-in .kundel-content,
	body.logged-in .kundel-content > .kundel-card,
	body.logged-in #buddypress,
	body.logged-in .activity-list,
	body.logged-in .activity-list .activity-item {
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
	}

	body.logged-in .kundel-sidebar-left .kundel-card,
	body.logged-in .kundel-sidebar-right .kundel-card {
		width: 100% !important;
	}
}

.kundel-comment-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 12px 14px;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	background: #f8fafc;
}

.kundel-comment-avatar {
	flex: 0 0 auto;
}

.kundel-comment-body {
	flex: 1 1 auto;
	min-width: 0;
}

.kundel-comment-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 6px;
	font-size: 13px;
	color: #6b7280;
}

.kundel-comment-meta strong {
	font-size: 14px;
	color: #1f2937;
}

.kundel-comment-text {
	color: #374151;
	font-size: 14px;
	line-height: 1.6;
}

.kundel-comment-text p {
	margin: 0;
}

.kundel-delete-comment-form {
	display: inline-flex;
	margin-left: auto;
}

.kundel-delete-comment-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 5px 10px;
	border: none;
	border-radius: 999px;
	background: #fee2e2;
	color: #b91c1c;
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.kundel-delete-comment-btn:hover {
	background: #fecaca;
	color: #991b1b;
}

.kundel-delete-comment-btn:active {
	transform: scale(0.98);
}


/* ═══════════════════════════════════════════════════════
   NOWA STRONA GŁÓWNA — LAPOWO LANDING PAGE (.lp-*)
   Prefiks lp- oddziela style od starego .zk-
═══════════════════════════════════════════════════════ */

/* ─── ZMIENNE ─── */
.lp-page {
  --lp-primary:      #e76f51;
  --lp-primary-dk:   #c85a3a;
  --lp-secondary:    #f4a261;
  --lp-text:         #1e1412;
  --lp-muted:        #6f5b5d;
  --lp-bg:           #fff7f5;
  --lp-bg-alt:       #fdf3f0;
  --lp-white:        #ffffff;
  --lp-border:       rgba(0,0,0,0.07);
  --lp-shadow-sm:    0 4px 12px rgba(0,0,0,0.06);
  --lp-shadow-md:    0 12px 32px rgba(0,0,0,0.09);
  --lp-shadow-lg:    0 24px 56px rgba(0,0,0,0.11);
  --lp-radius-sm:    12px;
  --lp-radius:       20px;
  --lp-radius-lg:    28px;
  --lp-radius-xl:    36px;

  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--lp-text);
  background: var(--lp-white);
  overflow-x: hidden;
}

.lp-page * {
  box-sizing: border-box;
}

/* ─── CONTAINER ─── */
.lp-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── BUTTONS ─── */
.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--lp-radius-sm);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.lp-btn-primary {
  background: var(--lp-primary);
  color: var(--lp-white);
  box-shadow: 0 10px 28px rgba(231,111,81,0.32);
}

.lp-btn-primary:hover {
  background: var(--lp-primary-dk);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(231,111,81,0.38);
}

.lp-btn-outline {
  background: transparent;
  color: var(--lp-text);
  border: 1.5px solid var(--lp-border);
  box-shadow: var(--lp-shadow-sm);
}

.lp-btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: var(--lp-shadow-md);
}

.lp-btn-white {
  background: var(--lp-white);
  color: var(--lp-primary);
  box-shadow: 0 10px 28px rgba(0,0,0,0.14);
}

.lp-btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.lp-btn-lg {
  padding: 18px 34px;
  font-size: 17px;
  border-radius: 14px;
}

/* ─── SEKCJA BAZOWA ─── */
.lp-section {
  padding: 88px 0;
}

.lp-section-alt {
  background: var(--lp-bg-alt);
}

.lp-section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.lp-section-tag {
  display: inline-block;
  background: rgba(231,111,81,0.1);
  color: var(--lp-primary-dk);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.lp-section-head h2 {
  font-size: 40px;
  font-weight: 800;
  margin: 0 0 14px;
  line-height: 1.15;
  color: var(--lp-text);
}

.lp-section-head p {
  font-size: 18px;
  color: var(--lp-muted);
  line-height: 1.7;
  margin: 0;
}

/* ─── PILL badge ─── */
.lp-pill {
  display: inline-block;
  background: rgba(231,111,81,0.1);
  color: var(--lp-primary-dk);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 24px;
  border: 1px solid rgba(231,111,81,0.18);
}

/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
.lp-hero {
  padding: 80px 0 72px;
  background:
    radial-gradient(ellipse at 70% 0%, rgba(244,162,97,0.14) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 100%, rgba(231,111,81,0.10) 0%, transparent 40%),
    linear-gradient(180deg, var(--lp-bg) 0%, var(--lp-white) 100%);
}

.lp-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* HERO — lewa kolumna */
.lp-hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.08;
  margin: 0 0 22px;
  color: var(--lp-text);
}

.lp-hero-title span {
  color: var(--lp-primary);
  position: relative;
}

.lp-hero-sub {
  font-size: 19px;
  line-height: 1.75;
  color: var(--lp-muted);
  max-width: 520px;
  margin: 0 0 32px;
}

.lp-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.lp-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.lp-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--lp-muted);
}

.lp-trust-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lp-primary);
  flex-shrink: 0;
}

/* HERO — prawa kolumna (mockup aplikacji) */
.lp-hero-visual {
  position: relative;
}

.lp-mockup {
  background: var(--lp-white);
  border-radius: var(--lp-radius-xl);
  box-shadow: var(--lp-shadow-lg);
  padding: 20px;
  border: 1px solid var(--lp-border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-mockup-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0 12px;
  border-bottom: 1px solid var(--lp-border);
  font-size: 16px;
  font-weight: 800;
  color: var(--lp-text);
}

.lp-mockup-nav {
  display: flex;
  gap: 6px;
}

.lp-mockup-nav span {
  width: 28px;
  height: 6px;
  border-radius: 3px;
  background: var(--lp-border);
}

.lp-mockup-nav span:first-child {
  background: var(--lp-primary);
  opacity: 0.6;
}

/* Karty profilu w mockupie */
.lp-mock-profile-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--lp-bg);
  border-radius: var(--lp-radius-sm);
}

.lp-mock-info {
  flex: 1;
}

.lp-mock-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--lp-text);
}

.lp-mock-meta {
  font-size: 12px;
  color: var(--lp-muted);
  margin-top: 2px;
}

.lp-mock-badge-follow {
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--lp-primary);
  color: var(--lp-white);
  flex-shrink: 0;
}

/* Karta posta w mockupie */
.lp-mock-post-card {
  padding: 12px;
  background: var(--lp-bg);
  border-radius: var(--lp-radius-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-mock-post-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-mock-post-text {
  font-size: 13px;
  color: var(--lp-text);
}

.lp-mock-photo-ph {
  height: 90px;
  background: linear-gradient(135deg, #ffd8c8, #ffe9dd);
  border-radius: var(--lp-radius-sm);
}

.lp-mock-reactions {
  display: flex;
  gap: 14px;
  font-size: 13px;
  color: var(--lp-muted);
  font-weight: 600;
}

/* Awatary mockupu — kolorowe kółka */
.lp-mock-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}

.lp-av-1 { background: linear-gradient(135deg, #f4a261, #e76f51); }
.lp-av-2 { background: linear-gradient(135deg, #74c69d, #52b788); }
.lp-av-3 { background: linear-gradient(135deg, #a8dadc, #457b9d); }

/* Pływające bąbelki */
.lp-float {
  position: absolute;
  background: var(--lp-white);
  border-radius: 16px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--lp-text);
  box-shadow: var(--lp-shadow-md);
  border: 1px solid var(--lp-border);
  animation: lp-float-anim 3.5s ease-in-out infinite alternate;
}

.lp-float-tl {
  top: -12px;
  left: -20px;
  animation-delay: 0s;
}

.lp-float-br {
  bottom: 20px;
  right: -16px;
  animation-delay: 1.2s;
}

@keyframes lp-float-anim {
  from { transform: translateY(0px); }
  to   { transform: translateY(-8px); }
}

/* ════════════════════════════════════
   STATS BAR
════════════════════════════════════ */
.lp-stats-bar {
  background: var(--lp-text);
  padding: 28px 0;
}

.lp-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.lp-stat {
  text-align: center;
  padding: 8px 40px;
}

.lp-stat strong {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: var(--lp-white);
  line-height: 1.2;
}

.lp-stat span {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  margin-top: 2px;
  display: block;
}

.lp-stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}

/* ════════════════════════════════════
   FEATURES
════════════════════════════════════ */
.lp-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.lp-feature {
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 32px 24px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.lp-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-md);
}

.lp-feature-ico {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.lp-ico-1 { background: #fff0eb; color: var(--lp-primary); }
.lp-ico-2 { background: #eef9f1; color: #2d9b5a; }
.lp-ico-3 { background: #edf4ff; color: #2563eb; }
.lp-ico-4 { background: #f5f0ff; color: #7c3aed; }

.lp-feature h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--lp-text);
}

.lp-feature p {
  font-size: 15px;
  color: var(--lp-muted);
  line-height: 1.65;
  margin: 0;
}

/* ════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════ */
.lp-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.lp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 260px;
  padding: 0 24px;
}

.lp-step-num {
  font-size: 48px;
  font-weight: 900;
  color: rgba(231,111,81,0.15);
  line-height: 1;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}

.lp-step h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--lp-text);
}

.lp-step p {
  font-size: 15px;
  color: var(--lp-muted);
  line-height: 1.65;
  margin: 0;
}

.lp-step-connector {
  margin-top: 26px;
  flex-shrink: 0;
  opacity: 0.7;
}

.lp-steps-cta {
  text-align: center;
  margin-top: 52px;
}

/* ════════════════════════════════════
   ABOUT / MISJA
════════════════════════════════════ */
.lp-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* Lewa kolumna — wizualne karty */
.lp-about-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lp-about-bigcard {
  background: linear-gradient(135deg, var(--lp-primary), var(--lp-secondary));
  border-radius: var(--lp-radius-lg);
  padding: 32px;
  color: var(--lp-white);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lp-about-emoji {
  font-size: 52px;
  line-height: 1;
}

.lp-about-bigcard-text {
  font-size: 16px;
  line-height: 1.65;
  opacity: 0.95;
}

.lp-about-card {
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--lp-shadow-sm);
}

.lp-about-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
}

.lp-about-av1 { background: linear-gradient(135deg, #f4a261, #e76f51); }
.lp-about-av2 { background: linear-gradient(135deg, #a8dadc, #457b9d); }

.lp-about-card-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--lp-text);
}

.lp-about-card-sub {
  font-size: 12px;
  color: var(--lp-muted);
  margin-top: 2px;
}

/* Prawa kolumna — treść */
.lp-about-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 20px;
  line-height: 1.2;
  color: var(--lp-text);
}

.lp-about-content p {
  font-size: 17px;
  color: var(--lp-muted);
  line-height: 1.8;
  margin: 0 0 16px;
}

.lp-check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-check-list li {
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  font-weight: 600;
  color: var(--lp-text);
}

.lp-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--lp-primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ════════════════════════════════════
   APP SECTION
════════════════════════════════════ */
.lp-app-section {
  background: var(--lp-bg);
}

.lp-app-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: center;
}

.lp-app-content h2 {
  font-size: 38px;
  font-weight: 800;
  margin: 0 0 18px;
  line-height: 1.2;
  color: var(--lp-text);
}

.lp-app-content p {
  font-size: 17px;
  color: var(--lp-muted);
  line-height: 1.75;
  max-width: 460px;
  margin: 0 0 28px;
}

.lp-app-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lp-app-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--lp-text);
  font-weight: 500;
}

.lp-app-bullet-ico {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--lp-primary);
  color: var(--lp-white);
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.lp-store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.lp-store-badge {
  display: inline-block;
  transition: transform 0.2s ease;
}

.lp-store-badge:hover {
  transform: translateY(-2px);
}

.lp-store-badge img {
  display: block;
  height: 48px;
  width: auto;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.14));
}

/* Phone CSS mockup */
.lp-phone {
  flex-shrink: 0;
}

.lp-phone-frame {
  width: 220px;
  height: 440px;
  background: var(--lp-text);
  border-radius: 36px;
  padding: 14px 10px;
  box-shadow: var(--lp-shadow-lg), inset 0 0 0 2px rgba(255,255,255,0.08);
  position: relative;
}

.lp-phone-notch {
  width: 70px;
  height: 20px;
  background: var(--lp-text);
  border-radius: 0 0 14px 14px;
  margin: 0 auto 8px;
  position: relative;
  z-index: 2;
}

.lp-phone-screen {
  background: var(--lp-white);
  border-radius: 26px;
  height: calc(100% - 32px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
}

.lp-ph-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 800;
  color: var(--lp-text);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--lp-border);
}

.lp-ph-card {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--lp-bg);
  border-radius: var(--lp-radius-sm);
  padding: 8px 10px;
}

.lp-ph-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
}

.lp-ph-av1 { background: linear-gradient(135deg, #f4a261, #e76f51); }
.lp-ph-av2 { background: linear-gradient(135deg, #a8dadc, #457b9d); }

.lp-ph-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--lp-text);
}

.lp-ph-meta {
  font-size: 10px;
  color: var(--lp-muted);
}

.lp-ph-post {
  background: var(--lp-bg);
  border-radius: var(--lp-radius-sm);
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.lp-ph-post-ph {
  height: 64px;
  background: linear-gradient(135deg, #ffd8c8, #ffe9dd);
  border-radius: 8px;
}

.lp-ph-post-text {
  font-size: 11px;
  color: var(--lp-text);
  font-weight: 500;
}

.lp-ph-post-reactions {
  font-size: 11px;
  color: var(--lp-muted);
}

/* ════════════════════════════════════
   CTA BOX
════════════════════════════════════ */
.lp-cta-box {
  background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-secondary) 100%);
  border-radius: var(--lp-radius-xl);
  padding: 72px 48px;
  text-align: center;
  box-shadow: 0 20px 56px rgba(231,111,81,0.28);
  position: relative;
  overflow: hidden;
}

.lp-cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,0.12) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255,255,255,0.08) 0%, transparent 35%);
  pointer-events: none;
}

.lp-cta-paw {
  font-size: 52px;
  margin-bottom: 20px;
  display: block;
  opacity: 0.9;
}

.lp-cta-box h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--lp-white);
  margin: 0 0 18px;
  line-height: 1.18;
  position: relative;
}

.lp-cta-box > p {
  font-size: 18px;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 36px;
  position: relative;
}

.lp-cta-note {
  font-size: 14px !important;
  margin-top: 20px !important;
  margin-bottom: 0 !important;
  opacity: 0.8;
}

.lp-cta-note a {
  color: var(--lp-white);
  font-weight: 700;
  text-decoration: underline;
}

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.lp-footer {
  padding: 28px 0;
  border-top: 1px solid var(--lp-border);
  background: var(--lp-white);
}

.lp-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.lp-footer-brand {
  font-size: 17px;
  font-weight: 800;
  color: var(--lp-text);
}

.lp-footer-copy {
  font-size: 13px;
  color: var(--lp-muted);
}

.lp-footer-contact {
  font-size: 13px;
  color: var(--lp-primary);
  font-weight: 600;
  text-decoration: none;
}

.lp-footer-contact:hover {
  text-decoration: underline;
}

/* ════════════════════════════════════
   ANIMACJA WEJŚCIA
════════════════════════════════════ */
@keyframes lp-fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lp-hero-content,
.lp-hero-visual {
  animation: lp-fade-up 0.7s ease both;
}

.lp-hero-visual {
  animation-delay: 0.15s;
}

/* ════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
════════════════════════════════════ */
@media (max-width: 1024px) {
  .lp-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-about {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .lp-about-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .lp-about-bigcard {
    grid-column: 1 / -1;
  }

  .lp-app-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lp-phone {
    display: flex;
    justify-content: center;
  }
}

/* ════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
════════════════════════════════════ */
@media (max-width: 768px) {
  .lp-hero {
    padding: 56px 0 52px;
  }

  .lp-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lp-hero-title {
    font-size: 38px;
  }

  .lp-hero-sub {
    font-size: 17px;
  }

  .lp-hero-visual {
    order: -1;
  }

  .lp-float-tl,
  .lp-float-br {
    position: static;
    display: inline-block;
    margin: 6px 6px 0 0;
  }

  .lp-section {
    padding: 64px 0;
  }

  .lp-section-head h2 {
    font-size: 30px;
  }

  .lp-stats-inner {
    gap: 0;
  }

  .lp-stat {
    padding: 8px 20px;
  }

  .lp-stat-sep {
    display: none;
  }

  .lp-stat strong {
    font-size: 20px;
  }

  .lp-features {
    grid-template-columns: 1fr;
  }

  .lp-steps {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }

  .lp-step-connector {
    transform: rotate(90deg);
    margin: 0;
  }

  .lp-step {
    padding: 0 12px;
  }

  .lp-about-visual {
    grid-template-columns: 1fr;
  }

  .lp-cta-box {
    padding: 48px 24px;
  }

  .lp-cta-box h2 {
    font-size: 28px;
  }

  .lp-cta-box > p {
    font-size: 16px;
  }

  .lp-footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .lp-mockup {
    max-width: 100%;
  }
}

/* ════════════════════════════════════
   RESPONSIVE — MAŁE MOBILE (≤ 480px)
════════════════════════════════════ */
@media (max-width: 480px) {
  .lp-hero-title {
    font-size: 32px;
  }

  .lp-hero-cta {
    flex-direction: column;
  }

  .lp-btn {
    justify-content: center;
  }

  .lp-stats-inner {
    flex-direction: column;
    gap: 20px;
  }

  .lp-stat-sep {
    display: none;
  }

  .lp-store-badges {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ─── KONIEC NOWEJ STRONY GŁÓWNEJ ─── */
