/* --- ЗАГАЛЬНІ СТИЛІ --- */
body { 
    background-color: #f4f7f6; 
    color: #2d3436; 
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* --- КОМПАКТНИЙ HERO (БІЛИЙ) --- */
.hero-section {
    background: #ffffff;
    padding: 35px 0;
    border-bottom: 1px solid #eee;
    border-radius: 0;
}

.hero-section h1 {
    color: #198754 !important; 
    font-size: 2.2rem;
    letter-spacing: -1px;
}

/* МОНОЛІТНИЙ ПОШУКОВИЙ РЯДОК */
.main-search-form {
    max-width: 500px;
    background: white;
    border: 2px solid #198754; 
    border-radius: 50px; 
    overflow: hidden; 
}

.main-search-form .form-control {
    background: transparent;
    box-shadow: none !important;
    height: 48px;
    font-size: 1rem;
}

.main-search-form .btn {
    border-radius: 0; 
    border: none;
    padding-top: 0;
    padding-bottom: 0;
    transition: background 0.2s;
}

.main-search-form .btn:hover {
    background-color: #157347;
}

/* --- КАРТКИ НА ВІТРИНІ --- */
.book-card { 
    height: 100%; 
    transition: all 0.3s ease; 
    border: none; 
    border-radius: 15px; 
    overflow: hidden;
    background: white;
}

.book-card:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 15px 30px rgba(0,0,0,0.1); 
}

.book-img-wrapper {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 15px;
    overflow: hidden;
}

.book-img { 
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

.card-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    height: 2.6em; 
    overflow: hidden;
}

/* --- СТОРІНКА КНИГИ (DETAIL) --- */
.original-title {
    font-style: italic;
    color: #636e72;
    margin-top: -5px;
}

.book-img-detail { 
    max-height: 500px; 
    border-radius: 15px; 
    box-shadow: 0 15px 40px rgba(0,0,0,0.1); 
}

.specs-box {
    border: 1px solid #e9ecef;
    background: #f8f9fa;
}

.spec-label { 
    color: #b2bec3; 
    font-weight: bold; 
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.book-description-container {
    padding: 25px;
    background-color: #fdfdfd;
    border-radius: 12px;
    border-left: 6px solid #198754;
}

/* --- ЦІНИ --- */
.price-card { 
    border-radius: 12px !important; 
    border: 1px solid #eee !important;
    border-left: 6px solid #198754 !important; 
    background-color: #fff;
    transition: background 0.2s;
}

.price-card:hover { background-color: #fcfcfc; }

.price-card.out-of-stock {
    border-left-color: #d63031 !important;
    opacity: 0.7;
}

.out-of-stock-stamp {
    color: #d63031;
    font-weight: 900;
    border: 2px solid #d63031;
    padding: 4px 12px;
    text-transform: uppercase;
    border-radius: 5px;
    transform: rotate(-3deg);
    font-size: 0.8rem;
}

/* --- ГРАФІК --- */
.chart-wrapper { 
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #eee;
}

/* --- СТИЛІЗАЦІЯ КАРТОК ВИДАВНИЦТВ --- */
.publisher-item {
    background: #ffffff;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.publisher-item:hover {
    transform: translateY(-5px);
    background: #f8f9fa;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08) !important;
}

.publisher-name {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.publishers-grid .card {
    border: 1px solid rgba(0,0,0,0.05) !important;
}
/* --- СТИЛЬ ОДНАКОВИХ КНОПОК-ЦЕГЛИНОК --- */
.publisher-btn {
    display: flex !important;
    align-items: center;      /* Центрування тексту по вертикалі */
    justify-content: center;  /* Центрування тексту по горизонталі */
    min-height: 70px;         /* Фіксована висота для ВСІХ кнопок */
    height: 100%;             /* Розтягування на всю висоту сітки */
    padding: 10px 15px !important;
    font-size: 0.9rem !important;
    font-weight: 600;         /* Напівжирний для чіткості */
    line-height: 1.2;         /* Щоб текст у 2 рядки не злипався */
    text-align: center;
    border-radius: 12px !important;
    border: 2px solid #198754 !important; /* Твій зелений колір */
    color: #198754 !important;
    background-color: white !important;
    transition: all 0.3s ease !important;
}

.publisher-btn:hover {
    transform: translateY(-4px); /* Ефект легкого підстрибування */
    background-color: #198754 !important; /* Заливка кольором при наведенні */
    color: white !important;
    box-shadow: 0 8px 15px rgba(25, 135, 84, 0.2) !important;
}

/* Прибираємо стандартний фокус Bootstrap */
.publisher-btn:focus {
    box-shadow: none !important;
}