.ps-grid-83a2e4b5 {
    display: grid;
    grid-template-columns: repeat(var(--ps-columns, 3), 1fr);
    gap: 20px;
}

.ps-card-83a2e4b5 {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    height: 100%;
}

.ps-card-main-link-83a2e4b5 {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    cursor: pointer;
}

.ps-card-image-83a2e4b5 {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.ps-card-image-83a2e4b5 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.ps-card-83a2e4b5:hover .ps-card-image-83a2e4b5 img.ps-zoom-enabled {
    transform: scale(1.08);
}

.ps-overlay-83a2e4b5 {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.ps-card-83a2e4b5:hover .ps-overlay-83a2e4b5 {
    opacity: 1;
}

.ps-overlay-text-83a2e4b5 {
    transform: translateY(15px);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-weight: 500;
}

.ps-card-83a2e4b5:hover .ps-overlay-text-83a2e4b5 {
    transform: translateY(0);
}

.ps-card-content-83a2e4b5 {
    padding: 20px 20px 10px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ps-card-title-83a2e4b5 {
    margin: 0 0 10px;
    font-size: 1.25rem;
}

.ps-card-desc-83a2e4b5 {
    margin: 0;
    line-height: 1.5;
    opacity: 0.8;
}

/* Product Sheet Button Styles */
.ps-sheet-btn-wrapper-83a2e4b5 {
    padding: 0 20px 20px 20px;
    margin-top: auto;
}

.ps-sheet-btn-83a2e4b5 {
    display: inline-block;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    color: #333;
    border: 1px solid #333;
    border-radius: 4px;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
}

.ps-sheet-btn-83a2e4b5:hover {
    background: rgba(0,0,0,0.05);
    color: #000;
}