/* ============================================================
   STYLY PODSTRÁNKY „NAŠE PRODEJNY" – Pěstování.cz
   Vložte do: Vzhled a obsah → Editor CSS stylů
   (nebo připojte na konec /user/documents/style.css)

   Barvy převzaté z aktuální šablony e-shopu:
   - primární tmavá  #353838
   - konverzní zelená #86bc42
   - hover oranžová   #fc7905
   - světlé pozadí    #f5f5f5 / linky #e9e9e9
   Font: Poppins (šablona jej již načítá)
   ============================================================ */

.ps-prodejny {
    font-family: 'Poppins', sans-serif;
    color: #353838;
    line-height: 1.6;
}

/* --- Nadpisy a úvod ------------------------------------------------ */
.ps-prodejny .ps-title {
    color: #353838;
    font-weight: 600;
    margin-bottom: 15px;
}

.ps-prodejny .ps-subtitle {
    color: #353838;
    font-weight: 600;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #86bc42;
}

.ps-prodejny .ps-intro {
    font-size: 16px;
    color: #4b4b4b;
    max-width: 860px;
    margin-bottom: 35px;
}

/* --- Mřížka s prodejnami ------------------------------------------- */
.ps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 767px) {
    .ps-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Karta prodejny ------------------------------------------------- */
.ps-card {
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .25s ease, transform .25s ease;
}

.ps-card:hover {
    box-shadow: 0 6px 22px rgba(53, 56, 56, .14);
    transform: translateY(-3px);
}

/* Fotografie prodejny */
.ps-card__photo {
    position: relative;
    background: #f5f5f5;
}

.ps-card__photo img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.ps-card__badge {
    position: absolute;
    left: 15px;
    bottom: 15px;
    background: #86bc42;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 6px 14px;
    border-radius: 100px;
}

.ps-card__body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ps-card__title {
    font-size: 20px;
    font-weight: 600;
    color: #353838;
    margin: 0 0 18px;
}

/* Adresa a kontakty */
.ps-card__address {
    font-style: normal;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.ps-card__contact {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 10px;
}

.ps-card__contact a {
    color: #353838;
    text-decoration: none;
    font-weight: 500;
}

.ps-card__contact a:hover {
    color: #fc7905;
}

/* Jednoduché CSS ikonky (bez obrázků) */
.ps-ico {
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    margin-top: 6px;
    border-radius: 50%;
    background: #86bc42;
    position: relative;
}

.ps-card__contact .ps-ico {
    margin-top: 0;
}

.ps-ico--phone { background: #fc7905; }
.ps-ico--mail  { background: #353838; }

/* Otevírací doba */
.ps-card__hours-title {
    font-size: 15px;
    font-weight: 600;
    color: #353838;
    margin: 18px 0 8px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.ps-hours {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 14px;
}

.ps-hours td {
    padding: 7px 0;
    border-bottom: 1px solid #e9e9e9;
}

.ps-hours td:last-child {
    text-align: right;
    font-weight: 600;
    color: #86bc42;
}

.ps-hours tr:last-child td:last-child {
    color: #aaa;
    font-weight: 400;
}

/* Tlačítko navigace – vzhled konverzního tlačítka e-shopu */
.ps-btn {
    display: inline-block;
    margin-top: auto;
    background: #86bc42;
    color: #fff !important;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none !important;
    padding: 12px 28px;
    border-radius: 5px;
    transition: background .2s ease;
}

.ps-btn:hover {
    background: #fc7905;
    color: #fff;
}

/* --- Fotogalerie ----------------------------------------------------- */
.ps-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 767px) {
    .ps-gallery {
        grid-template-columns: 1fr;
    }
}

.ps-gallery__item {
    margin: 0;
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 5px;
    overflow: hidden;
}

.ps-gallery__item img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform .3s ease;
}

.ps-gallery__item:hover img {
    transform: scale(1.04);
}

.ps-gallery__item figcaption {
    padding: 10px 15px;
    font-size: 13px;
    color: #737373;
    text-align: center;
}

/* --- Fakturační údaje ------------------------------------------------ */
.ps-company {
    margin-top: 10px;
    background: #f5f5f5;
    border-radius: 5px;
    padding: 25px 30px;
}

.ps-company p {
    margin: 0;
    font-size: 15px;
}
