/* Kindle items grid layout */
.kindle-items-container {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding: 5px;
}

.kindle-item {
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
}

.kindle-item:hover {
    transform: translateY(-5px);
}

.item-box {
    width: 100px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.item-image {
    text-align: center;
    margin-bottom: 10px;
}

.item-image img {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
}

.item-title {
    font-size: 10px;
    color: #333;
    text-align: center;
    padding: 8px;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

