/* ========================================
   DETAIL VRHU - Stránka detailu vrhu
   MOBILE FIRST - základní styly pro mobil
   BEM metodika
   ======================================== */

/* ========================================
   VRH INFO - Základní informace o vrhu
   ======================================== */

.vrh-info {
    margin-bottom: 24px;
}

.vrh-info__layout {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Hlavička vrhu - název a plemeno */
.vrh-info__header {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vrh-info__name {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

.vrh-info__breed {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Galerie vrhu */
.vrh-info__gallery {
    width: 100%;
}

/* Badge na galerii */
.vrh-info__badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.vrh-info__badge--available {
    background-color: #10b981;
    color: #ffffff;
}

/* Detaily vrhu */
.vrh-info__details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 16px;
}

.vrh-info__detail-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.vrh-info__detail-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.vrh-info__detail-row:first-child {
    padding-top: 0;
}

/* Zvýraznění řádku odběru */
.vrh-info__detail-row--pickup {
    background-color: rgba(16, 185, 129, 0.08);
    border-radius: 8px;
    padding: 10px 12px;
    margin: 4px -12px;
    border-bottom: none;
}

.vrh-info__detail-row--pickup .vrh-info__label {
    color: #059669;
}

.vrh-info__detail-row--pickup .vrh-info__value {
    color: #059669;
    font-weight: 600;
}

.vrh-info__label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.vrh-info__icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
}

/* Pro IMG ikony (SVG soubory) - obarvení na šedou */
img.vrh-info__icon {
    filter: invert(45%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(90%);
}

.vrh-info__value {
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 600;
    text-align: right;
}

.vrh-info__value--highlight {
    color: #10b981;
    font-weight: 700;
}

/* Počet štěňat s kolečky */
.vrh-info__total {
    font-weight: 700;
    margin-right: 8px;
}

.vrh-info__puppies {
    display: inline-flex;
    gap: 4px;
}

.vrh-info__puppy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
}

.vrh-info__puppy--male {
    background-color: #60a5fa;
}

.vrh-info__puppy--female {
    background-color: #f472b6;
}

/* ========================================
   VRH RODIČE - Sekce rodičů
   ======================================== */

.vrh-rodice {
    margin-bottom: 24px;
}

.vrh-rodice__title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px 0;
}

.vrh-rodice__grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0 12px 0;
    margin: -8px 0 -12px 0;
    /* Skrytí scrollbaru - používáme tečky */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.vrh-rodice__grid::-webkit-scrollbar {
    display: none;
}

/* Karta rodiče */
.vrh-rodice__card {
    display: flex;
    flex-direction: column;
    min-width: 260px;
    width: 260px;
    flex-shrink: 0;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    transition: all 0.2s ease;
    scroll-snap-align: start;
    overflow: hidden;
}

.vrh-rodice__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Fotka rodiče - jako background s badge dole */
.vrh-rodice__photo {
    height: 160px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
    align-content: flex-end;
    justify-content: flex-start;
    padding: 6px;
    gap: 4px;
    border-radius: 12px 12px 0 0;
}

/* Role label - pravý horní roh */
.vrh-rodice__role {
    position: absolute;
    top: 6px;
    right: 6px;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    background-color: rgba(0, 0, 0, 0.6);
    color: #ffffff;
}

/* Badge na fotce - dole */
.vrh-rodice__badge {
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
}

.vrh-rodice__badge--champion {
    background-color: #f59e0b;
    color: #ffffff;
}

/* Info rodiče */
.vrh-rodice__info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    min-width: 0;
}

/* Header s ikonou a jménem */
.vrh-rodice__header {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 2px;
}

.vrh-rodice__gender {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

.vrh-rodice__gender--female {
    color: #f472b6;
}

.vrh-rodice__gender--male {
    color: #60a5fa;
}

.vrh-rodice__gender svg {
    width: 100%;
    height: 100%;
}

.vrh-rodice__name {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Řádek s plemenem, barvou a srstí */
.vrh-rodice__breed-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 4px;
}

.vrh-rodice__breed {
    color: #667eea;
}

.vrh-rodice__separator {
    color: #ccc;
}

.vrh-rodice__color,
.vrh-rodice__coat {
    color: #95a5a6;
}

/* Detaily - věk */
.vrh-rodice__details {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.vrh-rodice__age {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    color: #7f8c8d;
    background-color: #f8f9fa;
    padding: 3px 6px;
    border-radius: 10px;
}

/* Zdraví - zelený chip */
.vrh-rodice__health {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    color: #10b981;
    background-color: #ecfdf5;
    padding: 3px 6px;
    border-radius: 10px;
    white-space: nowrap;
}

.vrh-rodice__health svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

/* Stanice - s ikonou a modrým odkazem */
.vrh-rodice__station {
    display: flex;
    align-items: center;
    gap: 6px;
}

.vrh-rodice__station-icon {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    color: #667eea;
}

.vrh-rodice__station-link {
    font-size: 11px;
    color: #667eea;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vrh-rodice__station-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Lokace s vlajkou */
.vrh-rodice__location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #7f8c8d;
}

.vrh-rodice__flag {
    width: 16px;
    height: 12px;
    border-radius: 2px;
    object-fit: cover;
    flex-shrink: 0;
}

.vrh-rodice__country {
    font-weight: 500;
    color: #2c3e50;
}

.vrh-rodice__place {
    color: #95a5a6;
}

.vrh-rodice__place::before {
    content: "•";
    margin-right: 6px;
    color: #d1d5db;
}

/* Tlačítko "Zobrazit profil" */
.vrh-rodice__button {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 10px 12px;
    font-size: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.vrh-rodice__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Slider wrapper */
.vrh-rodice__slider {
    position: relative;
}

/* Ikona křížení - skrytá na mobilu */
.vrh-rodice__cross {
    display: none;
}

/* Puntíky (indikátory) pod rodiči */
.vrh-rodice__dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 12px 0 0 0;
}

.vrh-rodice__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d1d5db;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.vrh-rodice__dot--active {
    background-color: #667eea;
    width: 20px;
    border-radius: 4px;
}

/* ========================================
   VRH ŠTĚŇATA - Seznam štěňat
   ======================================== */

.vrh-stenata {
    margin-top: 32px;
    margin-bottom: 24px;
}

.vrh-stenata__header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
}

.vrh-stenata__title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.vrh-stenata__date {
    font-size: 13px;
    color: #667eea;
    font-weight: 600;
}

.vrh-stenata__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Karta štěněte - styl jako chovní jedinci */
.stene-card {
    flex: none;
    width: calc(50% - 5px);
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stene-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Stav prodané - ztlumení */
.stene-card--sold {
    opacity: 0.7;
}

/* Obrázek karty - background-image do krajů */
.stene-card__image {
    height: 120px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
    align-content: flex-end;
    justify-content: flex-start;
    padding: 6px;
    gap: 4px;
}

/* Badge (štítek stavu) */
.stene-card__badge {
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    color: #ffffff;
}

/* DOSTUPNOST štítky */
.stene-card__badge--available {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.stene-card__badge--reserved {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.stene-card__badge--sold {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
}

/* KVALITA štítky */
.stene-card__badge--chovny {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.stene-card__badge--nadeje {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.stene-card__badge--mazlik {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
}

/* Obsah karty */
.stene-card__content {
    padding: 10px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background-color: #ffffff;
}

/* Header s pohlavím a jménem */
.stene-card__header {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 6px;
}

/* Ikona pohlaví */
.stene-card__gender {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.stene-card__gender svg {
    width: 16px;
    height: 16px;
}

.stene-card__gender--male svg {
    color: #60a5fa;
}

.stene-card__gender--female svg {
    color: #f472b6;
}

/* Jméno štěněte */
.stene-card__name {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Plemeno + varieta */
.stene-card__breed {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 12px;
    line-height: 1.3;
}

.stene-card__breed-name {
    color: #667eea;
}

.stene-card__separator {
    color: #ccc;
}

.stene-card__variety {
    color: #95a5a6;
}

/* Tlačítko "Chci vědět víc" */
.stene-card__button {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 8px 10px;
    font-size: 11px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.stene-card__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Barevný rozlišovák (obojek) - kolečko */
.stene-card__collar {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--collar-color, #ccc);
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.15);
    margin-top: 3px;
}

/* Meta řádek - pořadí narození + povaha */
.stene-card__meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

/* Pořadí narození */
.stene-card__birth-order {
    font-size: 10px;
    color: #7f8c8d;
    background-color: #f8f9fa;
    padding: 2px 6px;
    border-radius: 8px;
    white-space: nowrap;
}

/* Povahový punc */
.stene-card__temperament {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 8px;
    white-space: nowrap;
}

.stene-card__temperament-icon {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

img.stene-card__temperament-icon {
    width: 12px;
    height: 12px;
}

.stene-card__temperament-text {
    font-weight: 500;
}

/* Varianty povah - 5 typů */

/* 1. Průzkumník - oranžová (energie, odvaha) */
.stene-card__temperament--pruzkumnik {
    background-color: #fff7ed;
    color: #ea580c;
    cursor: help;
}

.stene-card__temperament--pruzkumnik img {
    filter: invert(39%) sepia(95%) saturate(1500%) hue-rotate(360deg) brightness(95%) contrast(95%);
}

/* 2. Mazel - růžová (vazba na člověka) */
.stene-card__temperament--mazel {
    background-color: #fdf2f8;
    color: #db2777;
    cursor: help;
}

.stene-card__temperament--mazel img {
    filter: invert(25%) sepia(90%) saturate(2000%) hue-rotate(315deg) brightness(90%) contrast(95%);
}

/* 3. Pohodář - modrá (klid, vyrovnanost) */
.stene-card__temperament--pohodar {
    background-color: #eff6ff;
    color: #2563eb;
    cursor: help;
}

.stene-card__temperament--pohodar img {
    filter: invert(30%) sepia(95%) saturate(2000%) hue-rotate(215deg) brightness(95%) contrast(95%);
}

/* 4. Snaživec - zelená (učenlivost, focus) */
.stene-card__temperament--snaživec {
    background-color: #ecfdf5;
    color: #059669;
    cursor: help;
}

.stene-card__temperament--snaživec img {
    filter: invert(40%) sepia(90%) saturate(800%) hue-rotate(120deg) brightness(90%) contrast(95%);
}

/* 5. Pozorovatel - fialová (opatrnost, vnímavost) */
.stene-card__temperament--pozorovatel {
    background-color: #f5f3ff;
    color: #7c3aed;
    cursor: help;
}

.stene-card__temperament--pozorovatel img {
    filter: invert(35%) sepia(80%) saturate(2000%) hue-rotate(245deg) brightness(90%) contrast(95%);
}

/* Detaily (datum narození a věk) */
.stene-card__details {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    margin-bottom: 4px;
}

.stene-card__cake-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    filter: invert(45%) sepia(70%) saturate(1500%) hue-rotate(210deg) brightness(90%) contrast(90%);
}

.stene-card__age {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    color: #7f8c8d;
    background-color: #f8f9fa;
    padding: 3px 6px;
    border-radius: 10px;
    white-space: nowrap;
}

.stene-card__birthdate {
    color: #2c3e50;
    font-weight: 500;
}

.stene-card__age-separator {
    color: #bdc3c7;
    font-size: 8px;
}

.stene-card__age-value {
    color: #7f8c8d;
}

/* Stanice */
.stene-card__station {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 4px;
}

.stene-card__station-icon {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    color: #667eea;
}

.stene-card__station-link {
    font-size: 11px;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stene-card__station-link:hover {
    color: #5568d3;
    text-decoration: underline;
}

/* Lokace */
.stene-card__location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #7f8c8d;
    margin-bottom: 8px;
}

.stene-card__flag {
    width: 16px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}

.stene-card__country {
    font-weight: 500;
    color: #2c3e50;
}

.stene-card__place {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #95a5a6;
}

.stene-card__place::before {
    content: "•";
    margin-right: 4px;
    color: #d1d5db;
}

/* ========================================
   VRH POPIS - O vrhu
   ======================================== */

.vrh-popis {
    margin-bottom: 24px;
}

.vrh-popis__title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}

.vrh-popis__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vrh-popis__text {
    font-size: 14px;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0;
}

/* ========================================
   VRH KONTAKT - CTA sekce
   ======================================== */

.vrh-kontakt {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    margin-bottom: 24px;
}

.vrh-kontakt__title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.vrh-kontakt__text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.vrh-kontakt__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background-color: #ffffff;
    color: #667eea;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.vrh-kontakt__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* ========================================
   PHOTO GALLERY - sdílené styly
   (pokud nejsou v samostatné komponentě)
   ======================================== */

.photo-gallery {
    width: 100%;
}

.photo-gallery__container {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.photo-gallery__slide {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.photo-gallery__slide--active {
    display: block;
}

.photo-gallery__badges {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 6px;
}

.photo-gallery__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-gallery__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.photo-gallery__arrow:hover {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.photo-gallery__arrow svg {
    width: 20px;
    height: 20px;
    stroke: #333;
}

.photo-gallery__arrow--prev {
    left: 8px;
}

.photo-gallery__arrow--next {
    right: 8px;
}


.photo-gallery__dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 12px 0;
}

.photo-gallery__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d1d5db;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.photo-gallery__dot--active {
    background-color: #667eea;
    width: 20px;
    border-radius: 4px;
}

/* ========================================
   RESPONZIVITA - TABLET (768px+)
   ======================================== */

@media (min-width: 768px) {
    /* VRH INFO */
    .vrh-info__header {
        flex-direction: row;
        align-items: baseline;
        gap: 12px;
    }

    .vrh-info__name {
        font-size: 26px;
    }

    .vrh-info__breed {
        font-size: 15px;
    }

    .vrh-info__details {
        padding: 20px;
    }

    .vrh-info__label {
        font-size: 15px;
    }

    .vrh-info__value {
        font-size: 15px;
    }

    /* PHOTO GALLERY */
    .photo-gallery__container {
        height: 280px;
    }

    /* VRH RODIČE */
    .vrh-rodice__title {
        font-size: 20px;
    }

    .vrh-rodice__card {
        min-width: 280px;
        width: 280px;
    }

    .vrh-rodice__photo {
        height: 180px;
        padding: 10px;
        gap: 5px;
    }

    .vrh-rodice__info {
        padding: 14px;
    }

    .vrh-rodice__name {
        font-size: 16px;
    }

    .vrh-rodice__breed-line {
        font-size: 13px;
    }

    .vrh-rodice__age {
        font-size: 12px;
    }

    .vrh-rodice__health {
        font-size: 12px;
    }

    .vrh-rodice__station-link {
        font-size: 12px;
    }

    .vrh-rodice__location {
        font-size: 12px;
    }

    .vrh-rodice__button {
        padding: 10px 14px;
        font-size: 13px;
    }

    .vrh-rodice__badge {
        padding: 4px 10px;
        font-size: 11px;
    }

    /* VRH ŠTĚŇATA */
    .vrh-stenata__header {
        flex-direction: row;
        align-items: baseline;
        gap: 12px;
    }

    .vrh-stenata__title {
        font-size: 20px;
    }

    .vrh-stenata__date {
        font-size: 14px;
    }

    .vrh-stenata__grid {
        gap: 12px;
    }

    .stene-card {
        width: calc(33.333% - 8px);
    }

    .stene-card__image {
        height: 140px;
        padding: 8px;
    }

    .stene-card__badge {
        padding: 3px 9px;
        font-size: 10px;
    }

    .stene-card__content {
        padding: 12px;
    }

    .stene-card__name {
        font-size: 15px;
    }

    .stene-card__breed {
        font-size: 12px;
    }

    .stene-card__collar {
        width: 14px;
        height: 14px;
    }

    .stene-card__meta {
        gap: 8px;
    }

    .stene-card__birth-order {
        font-size: 11px;
        padding: 3px 8px;
    }

    .stene-card__temperament {
        font-size: 11px;
        padding: 3px 8px;
    }

    .stene-card__button {
        padding: 9px 12px;
        font-size: 12px;
        border-radius: 8px;
    }

    .stene-card__station-icon {
        width: 13px;
        height: 13px;
    }

    .stene-card__station-link {
        font-size: 12px;
    }

    .stene-card__location {
        font-size: 12px;
    }

    .stene-card__flag {
        width: 18px;
        height: 13px;
    }

    .stene-card__details {
        gap: 5px;
        margin-top: 4px;
        margin-bottom: 4px;
    }

    .stene-card__cake-icon {
        width: 13px;
        height: 13px;
    }

    .stene-card__age {
        font-size: 10px;
        padding: 2px 5px;
    }

    /* VRH POPIS */
    .vrh-popis__title {
        font-size: 20px;
    }

    .vrh-popis__text {
        font-size: 15px;
    }

    /* VRH KONTAKT */
    .vrh-kontakt {
        padding: 32px;
    }

    .vrh-kontakt__title {
        font-size: 22px;
    }

    .vrh-kontakt__text {
        font-size: 15px;
    }
}

/* ========================================
   RESPONZIVITA - DESKTOP (1024px+)
   ======================================== */

@media (min-width: 1024px) {
    /* VRH INFO */
    .vrh-info__layout {
        display: grid;
        grid-template-columns: 2fr 1fr;
        grid-template-rows: auto auto;
        gap: 24px;
    }

    .vrh-info__header {
        grid-column: 1 / -1;
    }

    .vrh-info__gallery {
        grid-column: 1;
    }

    .vrh-info__details {
        grid-column: 2;
        align-self: start;
        padding: 16px;
    }

    .vrh-info__name {
        font-size: 28px;
    }

    .vrh-info__breed {
        font-size: 16px;
    }

    /* PHOTO GALLERY */
    .photo-gallery__container {
        height: 380px;
    }

    .photo-gallery__arrow {
        width: 40px;
        height: 40px;
    }

    /* VRH RODIČE - větší karty na desktopu */
    .vrh-rodice__grid {
        overflow-x: visible;
        padding-bottom: 0;
        justify-content: space-between;
        align-items: stretch;
    }

    /* Skrytí teček na desktopu - není potřeba scroll */
    .vrh-rodice__dots {
        display: none;
    }

    /* Ikona křížení mezi kartami */
    .vrh-rodice__cross {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        flex-shrink: 0;
        align-self: center;
    }

    .vrh-rodice__cross svg {
        width: 32px;
        height: 32px;
        color: #667eea;
    }

    .vrh-rodice__card {
        flex: 1;
        width: auto;
        min-width: 0;
        max-width: calc(50% - 35px);
    }

    .vrh-rodice__photo {
        height: 280px;
        padding: 12px;
        gap: 6px;
    }

    .vrh-rodice__role {
        padding: 5px 12px;
        font-size: 12px;
    }

    .vrh-rodice__badge {
        padding: 5px 12px;
        font-size: 12px;
    }

    .vrh-rodice__info {
        padding: 16px;
    }

    .vrh-rodice__gender {
        width: 20px;
        height: 20px;
    }

    .vrh-rodice__name {
        font-size: 17px;
    }

    .vrh-rodice__breed-line {
        font-size: 14px;
    }

    .vrh-rodice__age {
        font-size: 12px;
    }

    .vrh-rodice__health {
        font-size: 12px;
    }

    .vrh-rodice__health svg {
        width: 14px;
        height: 14px;
    }

    .vrh-rodice__station-icon {
        width: 14px;
        height: 14px;
    }

    .vrh-rodice__station-link {
        font-size: 13px;
    }

    .vrh-rodice__location {
        font-size: 13px;
    }

    .vrh-rodice__flag {
        width: 18px;
        height: 13px;
    }

    .vrh-rodice__button {
        margin-top: 14px;
        padding: 10px 16px;
        font-size: 14px;
    }

    .vrh-rodice__badge {
        padding: 4px 10px;
        font-size: 11px;
    }

    /* VRH ŠTĚŇATA */
    .vrh-stenata {
        margin-top: 64px;
    }

    .vrh-stenata__date {
        font-size: 15px;
    }

    .vrh-stenata__grid {
        gap: 16px;
    }

    .stene-card {
        width: calc(33.333% - 11px);
    }

    .stene-card__image {
        height: 160px;
        padding: 10px;
        gap: 6px;
    }

    .stene-card__badge {
        padding: 4px 10px;
        font-size: 11px;
        border-radius: 12px;
    }

    .stene-card__content {
        padding: 14px;
    }

    .stene-card__header {
        gap: 8px;
        margin-bottom: 8px;
    }

    .stene-card__gender {
        width: 20px;
        height: 20px;
    }

    .stene-card__gender svg {
        width: 18px;
        height: 18px;
    }

    .stene-card__name {
        font-size: 16px;
    }

    .stene-card__breed {
        font-size: 13px;
        gap: 6px;
    }

    .stene-card__collar {
        width: 14px;
        height: 14px;
        border-radius: 50%;
    }

    .stene-card__meta {
        gap: 8px;
        margin-bottom: 8px;
    }

    .stene-card__birth-order {
        font-size: 11px;
        padding: 3px 10px;
    }

    .stene-card__temperament {
        font-size: 11px;
        padding: 3px 10px;
        gap: 4px;
    }

    .stene-card__temperament-icon {
        font-size: 12px;
    }

    .stene-card__station-icon {
        width: 14px;
        height: 14px;
    }

    .stene-card__station-link {
        font-size: 13px;
    }

    .stene-card__location {
        font-size: 13px;
        gap: 6px;
    }

    .stene-card__flag {
        width: 18px;
        height: 13px;
    }

    .stene-card__details {
        gap: 6px;
        margin-top: 4px;
        margin-bottom: 4px;
    }

    .stene-card__cake-icon {
        width: 14px;
        height: 14px;
    }

    .stene-card__age {
        font-size: 11px;
        padding: 3px 6px;
    }

    .stene-card__button {
        margin-top: 12px;
        padding: 10px 14px;
        font-size: 13px;
    }

    /* VRH KONTAKT */
    .vrh-kontakt {
        padding: 40px;
        border-radius: 20px;
    }

    .vrh-kontakt__title {
        font-size: 24px;
    }

    .vrh-kontakt__text {
        font-size: 16px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
    }

    .vrh-kontakt__button {
        padding: 14px 36px;
        font-size: 16px;
    }
}

/* ========================================
   DETAILNÍ PANEL ŠTĚNĚTE - MOBILE FIRST
   ======================================== */

/* Panel - skrytý defaultně */
.stene-detail-panel {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    overflow: hidden;
}

/* Panel otevřený */
.stene-detail-panel--open {
    display: block;
}

/* Tmavé pozadí (overlay) */
.stene-detail-panel__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    animation: steneDetailFadeIn 0.3s ease;
    z-index: 1;
}

/* Obsah panelu - MOBIL (fullscreen) */
.stene-detail-panel__content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: white;
    overflow-y: auto;
    animation: steneDetailSlideIn 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

/* Animace */
@keyframes steneDetailFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes steneDetailSlideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

/* Zavírací křížek - skrytý defaultně */
.stene-detail-panel__close {
    display: none;
}

/* Křížek viditelný když je panel otevřený - MOBILE FIRST */
.stene-detail-panel--open .stene-detail-panel__close {
    display: flex;
    position: fixed;
    top: 160px;
    right: 16px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 3px solid rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10002;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
    padding: 8px;
    transition: all 0.3s ease;
}

.stene-detail-panel__close:hover {
    background: linear-gradient(135deg, #5568d3 0%, #643a87 100%);
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.5);
}

.stene-detail-panel__close:active {
    background: linear-gradient(135deg, #4a5cc4 0%, #552f72 100%);
    transform: scale(0.98);
}

.stene-detail-panel__close svg {
    width: 24px;
    height: 24px;
    color: white;
    stroke-width: 2.5;
    pointer-events: none;
}

/* Hlavička s fotkou - MOBIL */
.stene-detail-panel__header {
    padding: 90px 16px 20px 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.stene-detail-panel__photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px auto;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.stene-detail-panel__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.stene-detail-panel__title {
    text-align: center;
}

.stene-detail-panel__name {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 6px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.stene-detail-panel__gender {
    display: inline-flex;
    width: 24px;
    height: 24px;
}

.stene-detail-panel__gender svg {
    width: 24px;
    height: 24px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.stene-detail-panel__station {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

/* Fotogalerie pod hlavičkou */
.stene-detail-panel__gallery {
    width: 100%;
    background: #f8f9fa;
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
}

.stene-detail-panel__gallery-arrow {
    display: none;
}

.stene-detail-panel__gallery-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.stene-detail-panel__gallery-container::-webkit-scrollbar {
    display: none;
}

.stene-detail-panel__gallery-track {
    display: flex;
    gap: 12px;
    padding: 4px 16px;
    transition: transform 0.3s ease;
}

.stene-detail-panel__gallery-item {
    flex-shrink: 0;
    width: 140px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.stene-detail-panel__gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.stene-detail-panel__gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Tělo panelu */
.stene-detail-panel__body {
    padding: 20px 16px;
}

/* Sekce */
.stene-detail-section {
    margin-bottom: 24px;
}

.stene-detail-section:last-child {
    margin-bottom: 0;
}

.stene-detail-section + .stene-detail-section {
    margin-top: 32px;
}

.stene-detail-section__title {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 0 0 14px 0 !important;
    line-height: 1.2 !important;
    padding: 12px 16px !important;
    background-color: #f5f5f5 !important;
    border-left: 4px solid #3b82f6 !important;
}

.stene-detail-section__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Fakta - kompaktní zobrazení */
.stene-detail-facts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stene-detail-fact {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.stene-detail-fact__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stene-detail-fact__svg {
    width: 18px;
    height: 18px;
    filter: invert(45%) sepia(70%) saturate(1500%) hue-rotate(210deg) brightness(90%) contrast(90%);
}

.stene-detail-fact__gender {
    display: inline-flex;
    width: 18px;
    height: 18px;
}

.stene-detail-fact__gender--male svg {
    color: #3b82f6;
}

.stene-detail-fact__gender--female svg {
    color: #ec4899;
}

.stene-detail-fact__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stene-detail-fact__content--badges {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}

.stene-detail-fact__label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.stene-detail-fact__value {
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 600;
}

.stene-detail-fact__link {
    color: #8b5cf6;
    text-decoration: none;
    transition: color 0.2s ease;
}

.stene-detail-fact__link:hover {
    color: #7c3aed;
    text-decoration: underline;
}

.stene-detail-fact__flag-inline {
    width: 16px;
    height: 12px;
    border-radius: 2px;
    vertical-align: middle;
    margin-right: 4px;
}

/* Status badges */
.stene-detail-status-badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 12px;
}

.stene-detail-status-badge--nadeje {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.stene-detail-status-badge--volny {
    background-color: #dcfce7;
    color: #16a34a;
}

.stene-detail-status-badge--zadany {
    background-color: #fef3c7;
    color: #d97706;
}

.stene-detail-status-badge--prodano {
    background-color: #f3f4f6;
    color: #6b7280;
}

/* Povahový štítek */
.stene-detail-temperament {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    width: fit-content;
}

.stene-detail-temperament__icon {
    width: 14px;
    height: 14px;
}

.stene-detail-temperament--pruzkumnik {
    background-color: #fff7ed;
    color: #ea580c;
}

.stene-detail-temperament--pruzkumnik .stene-detail-temperament__icon {
    filter: invert(39%) sepia(95%) saturate(1500%) hue-rotate(360deg) brightness(95%) contrast(95%);
}

.stene-detail-temperament--mazel {
    background-color: #fdf2f8;
    color: #db2777;
}

.stene-detail-temperament--mazel .stene-detail-temperament__icon {
    filter: invert(30%) sepia(90%) saturate(2000%) hue-rotate(310deg) brightness(90%) contrast(95%);
}

.stene-detail-temperament--pohodar {
    background-color: #eff6ff;
    color: #2563eb;
}

.stene-detail-temperament--pohodar .stene-detail-temperament__icon {
    filter: invert(35%) sepia(80%) saturate(2000%) hue-rotate(210deg) brightness(90%) contrast(95%);
}

.stene-detail-temperament--snazivec {
    background-color: #ecfdf5;
    color: #059669;
}

.stene-detail-temperament--snazivec .stene-detail-temperament__icon {
    filter: invert(40%) sepia(70%) saturate(1500%) hue-rotate(120deg) brightness(90%) contrast(95%);
}

.stene-detail-temperament--pozorovatel {
    background-color: #f5f3ff;
    color: #7c3aed;
}

.stene-detail-temperament--pozorovatel .stene-detail-temperament__icon {
    filter: invert(35%) sepia(80%) saturate(2000%) hue-rotate(245deg) brightness(90%) contrast(95%);
}

/* Health-term tooltip uvnitř povahového štítku */
.stene-detail-temperament .health-term {
    color: inherit;
    font-weight: 600;
    position: relative;
}

.stene-detail-temperament .health-term::after {
    color: inherit;
    opacity: 0.7;
}

.stene-detail-temperament .health-term:hover::after {
    opacity: 1;
}

.stene-detail-temperament .health-term__tooltip {
    width: 280px;
    left: auto;
    right: 0;
    transform: none;
}

.stene-detail-temperament .health-term__tooltip::after {
    left: auto;
    right: 30px;
    transform: none;
}

/* ========================================
   HEALTH-TERM pro panel štěněte (tooltips)
   ======================================== */

/* Základní styl - skrytý tooltip na mobilu */
.stene-detail-panel .health-term:not(.health-term--active) .health-term__tooltip {
    display: none;
    opacity: 0;
    visibility: hidden;
}

/* Aktivní tooltip - zobrazí se JavaScriptem při kliknutí */
.stene-detail-panel .health-term--active .health-term__tooltip {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: fixed !important;
    top: var(--tooltip-top, 50%) !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(-100%) translateY(-12px) !important;
    bottom: auto !important;
    z-index: 100000 !important;
    width: 85% !important;
    max-width: 400px !important;
    font-size: 14px !important;
    padding: 14px 16px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25) !important;
}

.stene-detail-panel .health-term--active .health-term__tooltip::after {
    display: none !important;
}

/* Desktop - hover funguje normálně */
@media (min-width: 768px) {
    .stene-detail-panel .health-term:not(.health-term--active) .health-term__tooltip {
        display: block;
        opacity: 0;
        visibility: hidden;
    }

    .stene-detail-panel .health-term:hover .health-term__tooltip {
        opacity: 1;
        visibility: visible;
    }

    .stene-detail-panel .health-term--active .health-term__tooltip {
        position: absolute !important;
        top: auto !important;
        left: auto !important;
        right: 0 !important;
        transform: none !important;
        bottom: calc(100% + 8px) !important;
        width: 280px !important;
        max-width: none !important;
    }

    .stene-detail-panel .health-term--active .health-term__tooltip::after {
        display: block !important;
        left: auto !important;
        right: 30px !important;
    }
}

/* Popis */
.stene-detail-description {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

/* Řádek s daty */
.stene-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
}

.stene-detail-row:last-child {
    border-bottom: none;
}

.stene-detail-row__label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    flex: 0 0 auto;
    margin-right: 16px;
}

.stene-detail-row__value {
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 600;
    text-align: right;
    flex: 1;
}

.stene-detail-row__link {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.stene-detail-row__link:hover {
    color: #7c3aed;
    text-decoration: underline;
}

.stene-detail-row__flag {
    width: 16px;
    height: 12px;
    border-radius: 2px;
    vertical-align: middle;
    margin-right: 4px;
}

/* Vhodné pro - tagy vhodných aktivit */
.stene-detail-suitable {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.stene-detail-suitable__label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 10px;
}

.stene-detail-suitable__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.stene-detail-suitable__tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
    color: #667eea;
    background-color: #f0f4ff;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.stene-detail-suitable__tag:hover {
    background-color: #e0e7ff;
    color: #5563d4;
}

/* Tlačítka akcí */
.stene-detail-section--actions {
    padding-top: 16px;
}

.stene-detail-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stene-detail-button {
    display: inline-block;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.stene-detail-button--primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.stene-detail-button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.stene-detail-button--outline {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.stene-detail-button--outline:hover {
    background: rgba(102, 126, 234, 0.08);
    transform: translateY(-2px);
}

/* Notice pro rezervované/prodané */
.stene-detail-reserved-notice,
.stene-detail-sold-notice {
    display: inline-block;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 12px;
    color: #6b7280;
    background-color: #f3f4f6;
}

/* Zvýrazněná hodnota (např. datum odběru) */
.stene-detail-row__value--highlight {
    color: #059669;
    font-weight: 700;
}

.stene-detail-row__value--good {
    color: #10b981;
}

/* Odznaky / Tituly - pro panely rodičů */
.stene-detail-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.stene-detail-badge {
    display: inline-block;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    color: white;
}

.stene-detail-badge--champion {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.stene-detail-badge--working {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.stene-detail-badge--show {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

/* Info popis */
.stene-detail-description--info {
    font-size: 13px;
    color: #666;
    font-style: italic;
    margin-bottom: 12px;
}

/* ========================================
   CHECKLIST - Co dostanete ke štěněti
   ======================================== */

.stene-detail-checklist {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stene-detail-checklist__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background-color: #f9fafb;
    border-radius: 8px;
    border-left: 3px solid transparent;
}

.stene-detail-checklist__item--yes {
    border-left-color: #10b981;
    background-color: #ecfdf5;
}

.stene-detail-checklist__item--no {
    border-left-color: #ef4444;
    background-color: #fef2f2;
}

.stene-detail-checklist__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
}

.stene-detail-checklist__item--yes .stene-detail-checklist__icon {
    background-color: #10b981;
    color: white;
}

.stene-detail-checklist__item--no .stene-detail-checklist__icon {
    background-color: #ef4444;
    color: white;
}

.stene-detail-checklist__text {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
}

.stene-detail-checklist__detail {
    font-size: 13px;
    color: #666;
    font-weight: 400;
}

/* ========================================
   TABLET (768px+)
   ======================================== */

@media (min-width: 768px) {
    .stene-detail-panel {
        top: 0;
    }

    .stene-detail-panel__content {
        width: 450px;
        left: auto;
    }

    .stene-detail-panel--open .stene-detail-panel__close {
        top: 72px;
        width: 56px;
        height: 56px;
        z-index: 99999;
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    }

    .stene-detail-panel__close svg {
        width: 28px;
        height: 28px;
        stroke-width: 3;
    }

    .stene-detail-panel__header {
        padding: 32px 24px 24px 24px;
    }

    .stene-detail-panel__photo {
        width: 140px;
        height: 140px;
        border-width: 5px;
    }

    .stene-detail-panel__name {
        font-size: 24px;
    }

    .stene-detail-panel__station {
        font-size: 16px;
    }

    .stene-detail-panel__body {
        padding: 28px 24px;
    }

    .stene-detail-section + .stene-detail-section {
        margin-top: 36px;
    }

    /* Tlačítka vedle sebe na tabletu */
    .stene-detail-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 12px;
    }

    .stene-detail-button {
        flex: 1;
        max-width: 200px;
        padding: 12px 20px;
        font-size: 14px;
    }

    /* Šipky galerie na tabletu */
    .stene-detail-panel__gallery-arrow {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 36px;
        height: 36px;
        background: white;
        border: 1px solid #e5e7eb;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        transition: all 0.2s ease;
    }

    .stene-detail-panel__gallery-arrow:hover {
        background: #f9fafb;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .stene-detail-panel__gallery-arrow--prev {
        left: 8px;
    }

    .stene-detail-panel__gallery-arrow--next {
        right: 8px;
    }

    .stene-detail-panel__gallery-arrow svg {
        width: 18px;
        height: 18px;
        color: #374151;
    }
}

/* ========================================
   DESKTOP (1024px+)
   ======================================== */

@media (min-width: 1024px) {
    .stene-detail-panel__content {
        width: 500px;
    }

    .stene-detail-panel__header {
        padding: 40px 32px 28px 32px;
    }

    .stene-detail-panel__photo {
        width: 160px;
        height: 160px;
    }

    .stene-detail-panel__name {
        font-size: 26px;
    }

    .stene-detail-panel__body {
        padding: 32px;
    }

    .stene-detail-section + .stene-detail-section {
        margin-top: 40px;
    }
}
