h2 {
    color: #2c5aa0;
    padding-bottom: 0.5rem;
    margin-top: 2rem;
}

h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.category-row {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scrollbar-width: none;
    width: 100%;
}

.product-item {
    margin-left: 1rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: row;
    flex-shrink: 0;
    width: 30rem;
    height: 15rem;
    border-radius: 1rem;
    background-color: #f0f0f0;
}

.product-item .cover-img {
    height: 100%;
    width: 10rem;
    flex-shrink: 0;
    border-radius: 1rem;
}
.product-item .cover-img img {
    height: 100%;
    width: 100%;
    border-radius: 1rem;
}

.product-item .book-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.product-item h4 {
    font-size: 1.25rem;
    margin: 0;
}

.product-item .subtitle { 
    margin-top: 0.25rem;
}

.product-item p {
    margin: 0;
}

#gospel-library-collection {
    display: none;
}
.category-section {
    position: relative;
}

.fade-overlay-right {
    position: absolute;
    right: 0;
    width: 10rem;
    height: 15rem;
    background: linear-gradient(to right, transparent, white);
    pointer-events: none;
    z-index: 1;
}

.fade-overlay-left {
    position: absolute;
    left: auto;
    width: 10rem;
    height: 15rem;
    background: linear-gradient(to left, transparent, white);
    pointer-events: none;
    z-index: 1;
    top: auto;
}

.fade-overlay-right.hidden,
.fade-overlay-left.hidden {
    opacity: 0;
    visibility: hidden;
}


h2.title {
  font-size: 2rem;
  font-weight: 900;
  padding: 0px;
}