.product-card-69810db5 {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    /* Box shadow removed from normal state */
}

.product-card-69810db5:hover {
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.pc-image {
    overflow: hidden;
}

.pc-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition-property: transform;
}

.pc-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1; /* allow content to grow inside the fixed height card */
}

.pc-tag-container {
    margin-bottom: 12px;
}

.pc-tag {
    display: inline-block;
    background: #eef2ff;
    color: #4f46e5;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.pc-title {
    margin: 0 0 16px 0;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
}

.pc-list {
    list-style-type: none;
    margin: 0 0 24px 0;
    padding: 0;
    width: 100%;
}

.pc-list li {
    margin-bottom: 8px;
    font-size: 1rem;
    color: #4a5568;
}

.pc-button-wrapper {
    margin-top: auto;
    width: 100%;
}

.pc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #4f46e5;
    color: #fff;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    box-sizing: border-box;
}

.pc-button:hover {
    opacity: 0.9;
}

.elementor-button-content-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
}