/* Wrapper – jeden produkt pod drugim */
.gt-featured-albums-wrapper.gt-featured-albums-rows {
    width: 100%;
    margin: 0 auto;
}

/* Pojedynczy produkt – rząd: obrazki + treść */
.gt-featured-album {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 80px;
}

/* Co drugi produkt odwrócony (lustrzane odbicie) */
.gt-featured-album.row-even {
    flex-direction: row-reverse;
}

/* Kontener na dwie okładki */
.gt-featured-album-images {
    flex: 0 0 45%;
    display: flex;
    gap: 20px;
}

.gt-featured-album-image {
    flex: 1;
}

.gt-featured-album-image-tag {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Treść */
.gt-featured-album-content {
    flex: 1;
}

.gt-featured-album-title {
    font-size: 2rem;
    margin: 0 0 10px;
    text-transform: none;
}

.gt-featured-album-title a {
    text-decoration: none;
}

.gt-featured-album-price {
    font-weight: bold;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

/* Opis – NIE ustawiamy font-size, dziedziczy z motywu (tak jak w kartach produktów) */
.gt-featured-album-excerpt {
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Przyciski */
.gt-featured-album-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.gt-featured-more {
    display: inline-block;
    padding: 10px 28px;
    border-radius: 4px;
    background: #00a000;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.gt-featured-more:hover {
    opacity: 0.9;
}

/* Koszyk – Twoja ikonka, większa, bez kółka */
.gt-featured-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    background: transparent;
    padding: 0;
}

.gt-cart-icon {
    display: block;
    width: 56px;
    height: 56px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url('../img/cart-icon.png');
}

/* Paginacja */
.gt-featured-pagination {
    text-align: center;
    margin: 10px 0 20px;
}

.gt-featured-pagination ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    gap: 6px;
}

.gt-featured-pagination li a,
.gt-featured-pagination li span {
    display: block;
    padding: 6px 10px;
    border-radius: 3px;
    border: 1px solid #ddd;
    text-decoration: none;
}

.gt-featured-pagination li span.current {
    background: #00a000;
    color: #ffffff;
    border-color: #00a000;
}

/* Responsywność – na małych ekranach obrazki nad treścią */
@media (max-width: 900px) {
    .gt-featured-album {
        flex-direction: column;
    }

    .gt-featured-album.row-even {
        flex-direction: column;
    }

    .gt-featured-album-images {
        width: 100%;
    }
}
