.elementor-5961 .elementor-element.elementor-element-400e2d4{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-2dee84b *//* =========================
   GRID
========================= */
.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* =========================
   KARTA PRODUKTU
========================= */
.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.06);
}

/* =========================
   OBRAZ
========================= */
.product-img {
    position: relative;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* =========================
   BADGE PROMOCJA
========================= */
.badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: black;
    color: white;
    font-size: 10px;
    padding: 3px 7px;
    border-radius: 3px;
    z-index: 5;
}

/* =========================
   CONTENT
========================= */
.product-content {
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* =========================
   TYTUŁ (2 linie max)
========================= */
.product-content h3 {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 6px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

    min-height: 34px;
}

/* =========================
   CENA NORMALNA
========================= */
.price span {
    color: #111;
    font-weight: 500;
    font-size: 13px;
}

/* =========================
   CENA PROMOCYJNA
========================= */
.price.sale span {
    color: #e63946;
    font-weight: 600;
}

/* STARA CENA */
.price del {
    color: #999;
    font-size: 12px;
    margin-right: 4px;
}

/* UKŁAD */
.price {
    margin-top: auto;
    margin-bottom: 8px;
}

/* =========================
   BUTTON (jak na Twoim screenie)
========================= */
.btn {
    display: block;
    text-align: center;
    background: #000;
    color: #fff;
    padding: 10px;
    border-radius: 4px;
    font-size: 13px;
    text-decoration: none;
    border: none;
    transition: all 0.2s ease;
}

/* hover – tylko tekst jaśnieje */
.btn:hover {
    background: #000;
    color: rgba(255,255,255,0.7);
}

/* klik */
.btn:active {
    transform: scale(0.97);
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    .wishlist-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-content {
        padding: 8px;
    }

    .product-content h3 {
        font-size: 11px;
        min-height: 30px;
    }

    .price span {
        font-size: 12px;
    }

    .price del {
        font-size: 11px;
    }

    .btn {
        font-size: 12px;
        padding: 8px;
    }

    .badge {
        font-size: 9px;
        padding: 2px 6px;
    }
}

/* =========================
   ULTRA MOBILE
========================= */
@media (max-width: 400px) {
    .wishlist-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   ❌ USUNIĘCIE KOMUNIKATÓW WOOCOMMERCE
========================= */
.woocommerce-message,
.woocommerce-notices-wrapper,
.woocommerce-error,
.woocommerce-info,
.added_to_cart,
a.added_to_cart {
    display: none !important;
}
/* link w tytule */
.product-content h3 a {
    color: #111;
    text-decoration: none;
}

.product-content h3 a:hover {
    text-decoration: underline;
}

/* link na obrazku */
.product-img a {
    display: block;
}/* End custom CSS */