/*
 * ============================================================
 *  JUBILER TINA – poprawki UX/UI
 *  Dodaj do: catalog/view/theme/jewelrythemes03/stylesheet/
 *  i dołącz w headerze lub na końcu atstyle.min.css
 * ============================================================
 */

/* ─────────────────────────────────────────────
   1. STOPKA – tło na całą szerokość
   ───────────────────────────────────────────── */

footer {
    background-color: #f5f5f5; /* dopasuj do aktualnego koloru tła stopki */
    width: 100%;
}

/* Wewnętrzny kontener – tylko centruje treść, bez tła */
footer .footer_center {
    background-color: transparent;
}

/* Dolny pasek stopki (copyright, płatności) */
.footer_bottom_outer {
    background-color: #ebebeb; /* nieco ciemniejszy od głównej stopki */
    width: 100%;
}

/* ─────────────────────────────────────────────
   2. IKONY SPOŁECZNOŚCIOWE W STOPCE – większe i z etykietami
   ───────────────────────────────────────────── */

.social-link ul.list-inline li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #ddd;
    color: #444;
    font-size: 16px;
    transition: background-color 0.2s, color 0.2s;
    text-decoration: none;
}

.social-link ul.list-inline li a:hover {
    background-color: #333;
    color: #fff;
}

/* ─────────────────────────────────────────────
   3. PASEK GÓRNY (TOP BAR) – lepszy kontrast
   ───────────────────────────────────────────── */

.vp-top-bar-wrapper {
    padding-top: 6px;
    padding-bottom: 6px;
}

/* ─────────────────────────────────────────────
   4. SEKCJA "OSTATNIO PRZEGLĄDANE" – wyraźniejszy nagłówek
   ───────────────────────────────────────────── */

.box-header .section-title h3.fp_carousel-title {
    border-left: 4px solid #c0392b; /* akcent kolorystyczny */
    padding-left: 10px;
    font-size: 18px;
    margin-bottom: 20px;
}

/* ─────────────────────────────────────────────
   5. PRZYCISK "DODAJ DO KOSZYKA" – lepszy wygląd mobilny
   ───────────────────────────────────────────── */

.button-cart {
    transition: background-color 0.2s, transform 0.1s;
}

.button-cart:active {
    transform: scale(0.97);
}

@media (max-width: 767px) {
    .btn-group.addcart_group {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .button-cart {
        width: 100%;
    }
}

/* ─────────────────────────────────────────────
   6. WIDGET TRUSTMATE NA STRONIE PRODUKTU – lepsze wyrównanie
   ───────────────────────────────────────────── */

.column_right_outer > .col-sm-12:has(#9cd4d926-8d7a-4638-842a-e3dc8c9bcf70) {
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

/* ─────────────────────────────────────────────
   7. ZAKŁADKI OPISU – lepszy wygląd aktywnej zakładki
   ───────────────────────────────────────────── */

#tabs_info .nav-tabs > li.active > a,
#tabs_info .nav-tabs > li.active > a:hover,
#tabs_info .nav-tabs > li.active > a:focus {
    border-top: 3px solid #c0392b;
    font-weight: bold;
}

/* ─────────────────────────────────────────────
   8. BREADCRUMB – zwiększona czytelność
   ───────────────────────────────────────────── */

.breadcrumb.product_page li a {
    color: #666;
    font-size: 13px;
}

.breadcrumb.product_page li:last-child a {
    color: #333;
    font-weight: 600;
    pointer-events: none; /* ostatni element nie jest klikalny */
}